Skip to content

Instantly share code, notes, and snippets.

@MarcelloDuarte
Created October 17, 2012 06:08
Show Gist options
  • Save MarcelloDuarte/3903939 to your computer and use it in GitHub Desktop.
Save MarcelloDuarte/3903939 to your computer and use it in GitHub Desktop.
Syntax
$sayHi = { echo "hi"; };
$sayHi(); // prints: hi
$sayHello = $name -> { echo "hello, $name"; };
$sayHello("Chuck Norris"); // prints: hello, Chuck Norris
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment