Object member access works now

This commit is contained in:
Nathan Braswell
2016-01-21 19:16:29 -05:00
parent d43f36f1d9
commit 8c5bf36433
3 changed files with 27 additions and 7 deletions

View File

@@ -39,8 +39,10 @@ fun main(): int {
/*for (var j = 0; j < 10; j++;)*/
/*simple_print(j)*/
var an_obj: Something
/*an_obj.member = 20*/
/*simple_print(an_obj.member)*/
an_obj.member = 20
simple_print(an_obj.member)
simple_print("here is thing")
simple_print(123)
return 0
}