Skip to content

Instantly share code, notes, and snippets.

@outworlder
Created February 3, 2012 19:06
Show Gist options
  • Save outworlder/1731799 to your computer and use it in GitHub Desktop.
Save outworlder/1731799 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
def ☠(n)
☥ = 10
blacks = %w(♟ ♝ ♞ ♜ ♛ ♚)
whites = %w(♙ ♗ ♘ ♖ ♕ ♔)
n.times { puts "yaaaaaaar" }
puts ☥
puts "White chess pieces: ", whites
puts "Black chess pieces: ", blacks
end
def ☎
"Your phone here"
end
☠(10)
@outworlder
Copy link
Author

-- coding: utf-8 --

def ☠(n)
begin
☥ = 10
blacks = %w(♟ ♝ ♞ ♜ ♛ ♚)
whites = %w(♙ ♗ ♘ ♖ ♕ ♔)

n.times { puts "yaaaaaaar" }

puts "White chess pieces: ", whites
puts "Black chess pieces: ", blacks

puts ☥/0

rescue Exception => ⚠
puts "Exception:#{⚠}"
end
end

def ⚕
"㊵


⛀ ⛁ "

end

def ☎
"Phone"
end

☠(10)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment