mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-14 23:58:03 +01:00
- Compile them as calls and definitions. - Use them for call(), clear(), run(), try(), and yield(). - Update the docs.
7 lines
85 B
Plaintext
7 lines
85 B
Plaintext
{
|
|
var local = "local"
|
|
new Fn {
|
|
IO.print(local) // expect: local
|
|
}.call()
|
|
}
|