diff options
| author | Baitinq <[email protected]> | 2025-05-25 22:49:18 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-05-25 22:49:53 +0200 |
| commit | f5904b62012ca475c14ad55b7f2c0b0c5c48b362 (patch) | |
| tree | 890b3f1274b8dab2e7e2a2052d7d452fa3ca6db2 /src/bootstrap | |
| parent | Examples: Fix example 21 (diff) | |
| download | interpreter-f5904b62012ca475c14ad55b7f2c0b0c5c48b362.tar.gz interpreter-f5904b62012ca475c14ad55b7f2c0b0c5c48b362.tar.bz2 interpreter-f5904b62012ca475c14ad55b7f2c0b0c5c48b362.zip | |
Feature: Start adding structs support
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/tokenizer.src | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bootstrap/tokenizer.src b/src/bootstrap/tokenizer.src index 49a717b..a24d090 100644 --- a/src/bootstrap/tokenizer.src +++ b/src/bootstrap/tokenizer.src @@ -311,6 +311,9 @@ let tokenizer_next = () => *i8 { if tokenizer_accept_string(">") { return ">"; }; + if tokenizer_accept_string(".") { + return "."; + }; let maybe_int = tokenizer_accept_int_type(); if maybe_int != cast(*i64, null) { |