Files
wren/test/this/closure.wren
T

8 lines
146 B
Plaintext
Raw Normal View History

2013-12-21 15:55:08 -08:00
class Foo {
2014-04-03 07:48:19 -07:00
getClosure { new Fn { toString } }
toString { "Foo" }
2013-12-21 15:55:08 -08:00
}
var closure = (new Foo).getClosure
2014-01-05 12:27:12 -08:00
IO.print(closure.call) // expect: Foo