diff options
| author | Baitinq <[email protected]> | 2025-01-06 01:47:06 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-06 01:47:06 +0100 |
| commit | e56ffdb6aa19e302912bc295f723ae5cb545af63 (patch) | |
| tree | fb8b04faf7304137cc404b027944699bc95fa84d /examples/2.src | |
| parent | Implement basic tokenizer (diff) | |
| download | interpreter-e56ffdb6aa19e302912bc295f723ae5cb545af63.tar.gz interpreter-e56ffdb6aa19e302912bc295f723ae5cb545af63.tar.bz2 interpreter-e56ffdb6aa19e302912bc295f723ae5cb545af63.zip | |
examples: add another example
Diffstat (limited to 'examples/2.src')
| -rw-r--r-- | examples/2.src | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/2.src b/examples/2.src new file mode 100644 index 0000000..3012b27 --- /dev/null +++ b/examples/2.src @@ -0,0 +1,5 @@ +let test = 1922; + +test = 4; + +print(test); |