mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-18 13:49:59 +01:00
This is technically redundant but it makes functional/procedural code look a *lot* more natural.
5 lines
55 B
Plaintext
5 lines
55 B
Plaintext
def f() {
|
|
// Hi.
|
|
}
|
|
System.print(f()) // expect: null
|