Files
wren/test/language/function/syntax.wren

26 lines
366 B
Plaintext
Raw Permalink Normal View History

2013-11-06 07:47:47 -08:00
// Single expression body.
Fn.new { System.print("ok") }.call() // expect: ok
2013-11-05 15:40:21 -08:00
2013-11-06 07:47:47 -08:00
// Curly body.
Fn.new {
System.print("ok") // expect: ok
}.call()
2013-11-05 15:40:21 -08:00
// Multiple statements.
Fn.new {
System.print("1") // expect: 1
System.print("2") // expect: 2
}.call()
2013-11-05 15:40:21 -08:00
// Extra newlines.
Fn.new {
2013-11-05 15:40:21 -08:00
System.print("1") // expect: 1
2013-11-05 15:40:21 -08:00
System.print("2") // expect: 2
2013-11-05 15:40:21 -08:00
}.call()