Skip to content

Instantly share code, notes, and snippets.

@lisa
Created December 5, 2016 16:54
Show Gist options
  • Save lisa/4ddbdb097dd322b6582be7de52dd9b0e to your computer and use it in GitHub Desktop.
Save lisa/4ddbdb097dd322b6582be7de52dd9b0e to your computer and use it in GitHub Desktop.
Make 2014 without numbers
include Math
def three
PI.to_i
end
def two
three - one
end
def one
three ** zero
end
def four
three + one
end
def zero
nil.to_i
end
puts "#{two}#{zero}#{one}#{four}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment