Skip to content

Instantly share code, notes, and snippets.

@danielpetisme
Created April 25, 2013 13:07
Show Gist options
  • Save danielpetisme/5459559 to your computer and use it in GitHub Desktop.
Save danielpetisme/5459559 to your computer and use it in GitHub Desktop.
Just to know what sound's cleaner or at leats more clear
@k33g_org way
function person = -> DynamicObject():
name("Golo"):
define("sayHello", |this| -> println(this: name()))
@danielpetisme way
function person = -> DynamicObject():
name("Golo"):
sayHello(|this| -> println(this: name()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment