diff options
| author | Baitinq <[email protected]> | 2025-01-13 00:35:40 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-13 00:36:01 +0100 |
| commit | f4a39671231ff11c8a98e3404cf8710e40725d9e (patch) | |
| tree | e1fd17337c88a2d846b52aa505932505700270b6 /examples | |
| parent | Tokenizer: Add support for tokenizing functions (diff) | |
| download | interpreter-f4a39671231ff11c8a98e3404cf8710e40725d9e.tar.gz interpreter-f4a39671231ff11c8a98e3404cf8710e40725d9e.tar.bz2 interpreter-f4a39671231ff11c8a98e3404cf8710e40725d9e.zip | |
Tokenizer: Add suport for underscores in identifier parsing
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/5.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/5.src b/examples/5.src index 3582794..521b9d7 100644 --- a/examples/5.src +++ b/examples/5.src @@ -1,7 +1,7 @@ -let printOne = () => { +let print_one = () => { print(1); }; -printOne(); +print_one(); return 0; |