diff options
Diffstat (limited to 'code/Interpreter2/example.txt')
-rw-r--r-- | code/Interpreter2/example.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/code/Interpreter2/example.txt b/code/Interpreter2/example.txt new file mode 100644 index 0000000..cf6adc8 --- /dev/null +++ b/code/Interpreter2/example.txt @@ -0,0 +1,12 @@ +var :: a +a=5 +a=a+1 +print a + +a=7 +a=a*2 +print a + +var :: b +b = 10 +print a+b
\ No newline at end of file |