summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlfie Eagleton <67986414+TheAlfanator@users.noreply.github.com>2021-11-03 17:09:29 +0000
committerAlfie Eagleton <67986414+TheAlfanator@users.noreply.github.com>2021-11-03 17:09:29 +0000
commit5e150e7350d9856b00405a54729a5652785383d7 (patch)
treea838e7b964993592c61cb170a8fb17f1416c2c43
parent85345d7d80eeb950ab64633ae1cb1f1c5dc87269 (diff)
downloadesotericFORTRAN-5e150e7350d9856b00405a54729a5652785383d7.tar.gz
esotericFORTRAN-5e150e7350d9856b00405a54729a5652785383d7.zip
Added example.txt to base directory
-rw-r--r--code/Interpreter2/.idea/workspace.xml21
-rw-r--r--code/Interpreter2/example.txt12
2 files changed, 31 insertions, 2 deletions
diff --git a/code/Interpreter2/.idea/workspace.xml b/code/Interpreter2/.idea/workspace.xml
index 4198910..f00309a 100644
--- a/code/Interpreter2/.idea/workspace.xml
+++ b/code/Interpreter2/.idea/workspace.xml
@@ -23,6 +23,7 @@
<configuration name="Language" type="Application" factoryName="Application">
<option name="MAIN_CLASS_NAME" value="Interpreter.Language" />
<module name="Interpreter2" />
+ <option name="PROGRAM_PARAMETERS" value="example.txt" />
<method v="2">
<option name="Make" enabled="true" />
</method>
@@ -40,13 +41,29 @@
<servers />
</component>
<component name="WindowStateProjectService">
- <state x="414" y="180" width="1092" height="714" key="#com.intellij.execution.impl.EditConfigurationsDialog" timestamp="1635958280293">
+ <state x="623" y="181" width="1092" height="714" key="#com.intellij.execution.impl.EditConfigurationsDialog" timestamp="1635958679737">
<screen x="0" y="0" width="1920" height="1050" />
</state>
- <state x="414" y="180" width="1092" height="714" key="#com.intellij.execution.impl.EditConfigurationsDialog/0.0.1920.1050/-1920.0.1920.1050@0.0.1920.1050" timestamp="1635958280293" />
+ <state x="623" y="181" width="1092" height="714" key="#com.intellij.execution.impl.EditConfigurationsDialog/0.0.1920.1050/-1920.0.1920.1050@0.0.1920.1050" timestamp="1635958679737" />
<state x="689" y="327" key="#com.intellij.ide.util.TreeClassChooserDialog" timestamp="1635958256418">
<screen x="0" y="0" width="1920" height="1050" />
</state>
<state x="689" y="327" key="#com.intellij.ide.util.TreeClassChooserDialog/0.0.1920.1050/-1920.0.1920.1050@0.0.1920.1050" timestamp="1635958256418" />
+ <state width="1877" height="177" key="GridCell.Tab.0.bottom" timestamp="1635959349993">
+ <screen x="0" y="0" width="1920" height="1050" />
+ </state>
+ <state width="1877" height="177" key="GridCell.Tab.0.bottom/0.0.1920.1050/-1920.0.1920.1050@0.0.1920.1050" timestamp="1635959349993" />
+ <state width="1877" height="177" key="GridCell.Tab.0.center" timestamp="1635959349992">
+ <screen x="0" y="0" width="1920" height="1050" />
+ </state>
+ <state width="1877" height="177" key="GridCell.Tab.0.center/0.0.1920.1050/-1920.0.1920.1050@0.0.1920.1050" timestamp="1635959349992" />
+ <state width="1877" height="177" key="GridCell.Tab.0.left" timestamp="1635959349992">
+ <screen x="0" y="0" width="1920" height="1050" />
+ </state>
+ <state width="1877" height="177" key="GridCell.Tab.0.left/0.0.1920.1050/-1920.0.1920.1050@0.0.1920.1050" timestamp="1635959349992" />
+ <state width="1877" height="177" key="GridCell.Tab.0.right" timestamp="1635959349992">
+ <screen x="0" y="0" width="1920" height="1050" />
+ </state>
+ <state width="1877" height="177" key="GridCell.Tab.0.right/0.0.1920.1050/-1920.0.1920.1050@0.0.1920.1050" timestamp="1635959349992" />
</component>
</project> \ No newline at end of file
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