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