Talk:Intentional programming: Difference between revisions

Content deleted Content added
restoring comment that got lost when page was moved
Line 1:
Here is a Java class that, when saved to the file WhichI.java, will compile and illustrate the point being made correctly.
 
<code>
public class WhichI {
public static String i = "am canadian";
public static void main(String[] args) {
for (int i = 1; i <= 10; i++) {
System.out.println(i);
}
System.out.println(i);
}
}
</code>
 
I think that the none functioning example in the text should be replaced with this one.
 
----
 
Why is this in Wikipedia? The only "user" of Intentional Programming that I know of is Simonyi's company. This is not an accepted technology or technique, only an unproven
idea for which Simonyi is known for in arcane software engineering circles.