add: tokenizer for content

This commit is contained in:
2026-08-23 22:55:16 +05:30
parent 4b2ecb367d
commit 3bc9e06673
4 changed files with 90 additions and 6 deletions
+9
View File
@@ -10,4 +10,13 @@ main() {
x++;
}
print("x is % now", x);
string file_path = "../examples/print.sr";
fs.read(file_path);
uint8[] x = [1,2,3];
x.push(4);
x.push(1);
x.push(2);
}