Skip to content

Instantly share code, notes, and snippets.

@jstrachan
Created March 16, 2010 13:15
Show Gist options
  • Select an option

  • Save jstrachan/333949 to your computer and use it in GitHub Desktop.

Select an option

Save jstrachan/333949 to your computer and use it in GitHub Desktop.
scala> def cheese(body: => Unit) { println("start"); body; println("end") }
cheese: (body: => Unit)Unit
scala> cheese { println("1"); println("2") }
start
1
2
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment