mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 14:18:42 +01:00
26 lines
342 B
Plaintext
26 lines
342 B
Plaintext
// Single expression body.
|
|
System.print(fn () { "ok" }()) // expect: ok
|
|
|
|
// Curly body.
|
|
fn () {
|
|
System.print("ok") // expect: ok
|
|
}()
|
|
|
|
// Multiple statements.
|
|
fn () {
|
|
System.print("1") // expect: 1
|
|
System.print("2") // expect: 2
|
|
}()
|
|
|
|
// Extra newlines.
|
|
fn () {
|
|
|
|
|
|
System.print("1") // expect: 1
|
|
|
|
|
|
System.print("2") // expect: 2
|
|
|
|
|
|
}()
|