danielpetisme

Untitled

Dec 5th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. def saySomething = {
  2.   println it
  3. }
  4.  
  5. saySomething("Hello, World!")
  6. //>Hello, World!
  7. saySomething.call("Hello, World!")
  8. //>Hello, World!
Advertisement
Add Comment
Please, Sign In to add comment