Files
wren/example/hello.wren
2013-10-26 16:01:44 -07:00

9 lines
101 B
Plaintext

class Foo { // line comment
bar {
123
}
}
var a = Foo.new
a.bar
"something".contains("meth")