mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
10 lines
123 B
Plaintext
10 lines
123 B
Plaintext
class Foo { // line comment
|
|
bar {
|
|
123
|
|
}
|
|
}
|
|
var a = Foo.new
|
|
a.bar
|
|
"something".contains("meth")
|
|
io.write("hey there")
|