Talk:Intentional programming: Difference between revisions

Content deleted Content added
Ged Byrne (talk | contribs)
m Finally figured out code formatting!
what video?
Line 1:
This entery makes multiple references to "the video", but dosen't say what or where this video is or how to view it.
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.