This commit is contained in:
Bob Nystrom
2013-12-20 07:05:31 -08:00
parent 61e745d548
commit e83d0bb360
11 changed files with 199 additions and 82 deletions
+6
View File
@@ -0,0 +1,6 @@
class Foo {
bar = value { return "result" }
}
var foo = new Foo
io.write(foo.bar = "value") // expect: result