Skip to content

Instantly share code, notes, and snippets.

@keikun17
Created June 3, 2013 03:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keikun17/5696010 to your computer and use it in GitHub Desktop.
Save keikun17/5696010 to your computer and use it in GitHub Desktop.
>> a = -> { puts "En Taro Adun" }
>> a.call
=> NoMethodError: undefined method 'a' for main
>> a
=> NoMethodError: undefined method 'a' for main
# This works
>> @a = -> { puts "Allahu Akbar" }
>> @a.call
=> "Allahu Akbar"
>> @a
=> #<Proc:0x51d4a8>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment