diff options
author | Alfie Eagleton <67986414+TheAlfanator@users.noreply.github.com> | 2021-11-03 17:09:29 +0000 |
---|---|---|
committer | Alfie Eagleton <67986414+TheAlfanator@users.noreply.github.com> | 2021-11-03 17:09:29 +0000 |
commit | 5e150e7350d9856b00405a54729a5652785383d7 (patch) | |
tree | a838e7b964993592c61cb170a8fb17f1416c2c43 /code/Interpreter2/example.txt | |
parent | 85345d7d80eeb950ab64633ae1cb1f1c5dc87269 (diff) | |
download | esotericFORTRAN-5e150e7350d9856b00405a54729a5652785383d7.tar.gz esotericFORTRAN-5e150e7350d9856b00405a54729a5652785383d7.zip |
Added example.txt to base directory
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 |