diff options
| author | Baitinq <[email protected]> | 2025-05-10 13:25:41 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-05-10 13:25:50 +0200 |
| commit | 36f0b2f486fbec48972a96581576b5008062be6f (patch) | |
| tree | a3a74d72aea5df49059e7f14a63f17c62154ea42 /src/bootstrap/tokenizer.src | |
| parent | Misc: Add gitattributes (diff) | |
| download | interpreter-36f0b2f486fbec48972a96581576b5008062be6f.tar.gz interpreter-36f0b2f486fbec48972a96581576b5008062be6f.tar.bz2 interpreter-36f0b2f486fbec48972a96581576b5008062be6f.zip | |
Feature: Add support for imports
Diffstat (limited to 'src/bootstrap/tokenizer.src')
| -rw-r--r-- | src/bootstrap/tokenizer.src | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bootstrap/tokenizer.src b/src/bootstrap/tokenizer.src new file mode 100644 index 0000000..751a0ac --- /dev/null +++ b/src/bootstrap/tokenizer.src @@ -0,0 +1,6 @@ +extern printf = (*i8, varargs) => void; + +let test = () => i64 { + printf("HELLO\n"); + return 2; +}; |