Initial commit

This commit is contained in:
2026-08-23 11:11:36 +03:00
commit 0548f8de26
97 changed files with 20841 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
const X = 1000
const Y = 10
const Res = X + Y
const Str = `is {Res} == 1010?`
class Foo
public Bar: string
function new(Bar: string)
return Test {Foo = Bar}
end
end
print(Str)
print(if Res == 1010 then "Yes it is!" else "No it isn't.")
print(Foo, Foo.new("Classes work!").Bar)