Files
wren/example/hello.wren

10 lines
123 B
Plaintext
Raw Normal View History

2013-10-25 20:07:04 -07:00
class Foo { // line comment
2013-10-24 21:32:17 -07:00
bar {
123
}
}
2013-10-24 21:32:17 -07:00
var a = Foo.new
a.bar
2013-10-26 16:01:44 -07:00
"something".contains("meth")
io.write("hey there")