Difference between revisions of "Example 1"

From ECLR
Jump to: navigation, search
(Created page with "<script> for i=1:10 i=i+1; end </script>")
 
Line 1: Line 1:
<script>
+
<source>
 
for i=1:10
 
for i=1:10
 
  i=i+1;
 
  i=i+1;
 
end
 
end
</script>
+
</source>

Revision as of 17:02, 18 September 2012

for i=1:10
 i=i+1;
end