initial commit

This commit is contained in:
rus07tam 2025-12-25 13:16:15 +00:00
commit 0298a062dd
39 changed files with 2448 additions and 0 deletions

5
test/example.jn Normal file
View file

@ -0,0 +1,5 @@
{
const name: str = 'bob';
const bob = new Person(name);
print(bob.name);
}