2013-11-06 07:47:47 -08:00
|
|
|
// Single expression body.
|
2015-09-15 07:46:09 -07:00
|
|
|
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.
|
2015-07-10 09:18:22 -07:00
|
|
|
Fn.new {
|
2015-09-15 07:46:09 -07:00
|
|
|
System.print("ok") // expect: ok
|
2015-02-26 23:08:36 -08:00
|
|
|
}.call()
|
2013-11-05 15:40:21 -08:00
|
|
|
|
2014-04-03 07:48:19 -07:00
|
|
|
// Multiple statements.
|
2015-07-10 09:18:22 -07:00
|
|
|
Fn.new {
|
2015-09-15 07:46:09 -07:00
|
|
|
System.print("1") // expect: 1
|
|
|
|
|
System.print("2") // expect: 2
|
2015-02-26 23:08:36 -08:00
|
|
|
}.call()
|
2013-11-05 15:40:21 -08:00
|
|
|
|
|
|
|
|
// Extra newlines.
|
2015-07-10 09:18:22 -07:00
|
|
|
Fn.new {
|
2013-11-05 15:40:21 -08:00
|
|
|
|
|
|
|
|
|
2015-09-15 07:46:09 -07:00
|
|
|
System.print("1") // expect: 1
|
2013-11-05 15:40:21 -08:00
|
|
|
|
|
|
|
|
|
2015-09-15 07:46:09 -07:00
|
|
|
System.print("2") // expect: 2
|
2013-11-05 15:40:21 -08:00
|
|
|
|
|
|
|
|
|
2015-02-26 23:08:36 -08:00
|
|
|
}.call()
|