commit ecaa14631543e0cca86c1fa7ed0de6babae3c390 parent f892c5c3d8e34786c0396e3ff7c99d771e2b2908 Author: bsandro <email@bsandro.tech> Date: Fri, 1 Jul 2022 00:10:45 +0300 added test.in as a sample source code file; use it witn an interpreter like that: cat test.in | ./interp Diffstat:
A | test.in | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/test.in b/test.in @@ -0,0 +1,6 @@ +let myhash = {"value1": 1,"value2": "two"}; + +let one = "value"; +let two = "2"; + +puts(one, two, myhash[one+two]);