Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,10 @@
T MyType
Int public_variable // member variable = instance variable
. Int private_variable
F () // constructor
.private_variable = 0
F someMethod() // member function = method
.private_variable = 1
.public_variable = 10

View file

@ -0,0 +1,3 @@
T MyType
F.virtual.new someMethod() -> N // this is polymorphic
print()