RosettaCodeData/Task/Send-an-unknown-method-call/Wren/send-an-unknown-method-call.wren

15 lines
240 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import "meta" for Meta
class Test {
construct new() {}
foo() { System.print("Foo called.") }
bar() { System.print("Bar called.") }
}
var test = Test.new()
for (method in ["foo", "bar"]) {
Meta.eval("test.%(method)()")
}