RosettaCodeData/Task/Send-an-unknown-method-call/Wren/send-an-unknown-method-call.wren
2023-07-01 13:44:08 -04:00

14 lines
240 B
Text

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)()")
}