Created
December 2, 2014 06:55
-
-
Save ohnishiakira/2d0bbf56a6326c1548f0 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env ruby | |
@hoge = "@fuga" | |
@fuga = "@hoge" | |
puts "#@hoge" | |
puts eval "#@hoge" | |
puts eval eval "#@hoge" | |
puts eval eval eval "#@hoge" | |
# => | |
# @fuga | |
# @hoge | |
# @fuga | |
# @hoge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment