mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
Method calls.
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
var a = {
|
||||
var b = 234
|
||||
3
|
||||
b
|
||||
class Foo {
|
||||
bar {
|
||||
123
|
||||
}
|
||||
}
|
||||
a.call
|
||||
var a = Foo.new
|
||||
a.bar
|
||||
|
||||
Reference in New Issue
Block a user