- Rename IO.write -> IO.print. - Make IO.write not print a newline. - Support \u Unicode escapes in strings.
7 lines
113 B
Plaintext
7 lines
113 B
Plaintext
class Foo {
|
|
bar = value { return "result" }
|
|
}
|
|
|
|
var foo = new Foo
|
|
IO.print(foo.bar = "value") // expect: result
|