summaryrefslogtreecommitdiffstats
path: root/src/example.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/example.txt')
-rw-r--r--src/example.txt20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/example.txt b/src/example.txt
index 55236c1..22a2bfb 100644
--- a/src/example.txt
+++ b/src/example.txt
@@ -1,12 +1,8 @@
-int::n
-int::a
-int::b
-int::temp
-a=0
-b=2
-if (a==0.and.b==1) then
-print*,"true"
-else
-print*,"false"
-end if
-
+int dimension(5)::test
+int::i
+do i=0,4
+test(i)=i
+end do
+do i=0,4
+print*,test(i)
+end do \ No newline at end of file