Created
March 28, 2012 08:41
-
-
Save JakubOboza/2224783 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9:40 joboza@admins-MacBook-Pro:~/Workspace/Ruby/webadapter/tmp λ cat lol.rb | |
# encoding: UTF-8 | |
alias :λ :lambda | |
foo = λ { puts "fuck yeah" } | |
foo[] | |
class SkyFoo | |
def ✈ | |
puts "i r flying!!/11one" | |
end | |
def ✈! | |
puts "i r nyyyyyyaaaannnnn cattttt flyyyyyyyy!11!1!11!one!!!111" | |
end | |
end | |
SkyFoo.new.✈ | |
SkyFoo.new.✈! | |
# run it now! 9:40 joboza@admins-MacBook-Pro:~/Workspace/Ruby/webadapter/tmp λ ruby lol.rb | |
fuck yeah | |
i r flying!!/11one | |
i r nyyyyyyaaaannnnn cattttt flyyyyyyyy!11!1!11!one!!!111 | |
9:40 joboza@admins-MacBook-Pro:~/Workspace/Ruby/webadapter/tmp λ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment