forked from Mirror/wren
9 lines
108 B
Plaintext
9 lines
108 B
Plaintext
class Foo {
|
|
bar=(value) {
|
|
IO.print(value)
|
|
}
|
|
}
|
|
|
|
var foo = new Foo
|
|
foo.bar = "value" // expect: value
|