diff options
| author | Baitinq <[email protected]> | 2025-01-09 00:06:15 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-09 00:06:15 +0100 |
| commit | 3b5c3422bbae7775e8db57957e941dff62aa9083 (patch) | |
| tree | 3f594f1264235b1ff99e55e05cea3a44a6667738 /examples/2.src | |
| parent | Evaluator: Implement first version of evaluator that handles print statements (diff) | |
| download | pry-lang-3b5c3422bbae7775e8db57957e941dff62aa9083.tar.gz pry-lang-3b5c3422bbae7775e8db57957e941dff62aa9083.tar.bz2 pry-lang-3b5c3422bbae7775e8db57957e941dff62aa9083.zip | |
Evaluator: Implement variable declaration and definition and variable printing
Diffstat (limited to 'examples/2.src')
| -rw-r--r-- | examples/2.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/2.src b/examples/2.src index 3012b27..da99740 100644 --- a/examples/2.src +++ b/examples/2.src @@ -1,5 +1,5 @@ let test = 1922; -test = 4; +test = 7; print(test); |