Created
June 27, 2014 11:46
-
-
Save supki/b0e29ca11fb79e9b986a to your computer and use it in GitHub Desktop.
EBLO
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 | |
def with_sobachka(str, &block) | |
puts "Sobachka!" | |
block.call | |
end | |
if $0 == __FILE__ | |
with_sobachka(<<-SOBACHKA) do | |
Eblo = 1 | |
Anal = 2 | |
Anus = 3 | |
Loshadka = 4 | |
Pyosiek = 5 | |
SOBACHKA | |
puts "Hey!" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment