Skip to content

Instantly share code, notes, and snippets.

@yitsushi
Created October 14, 2010 14:22
Show Gist options
  • Save yitsushi/626236 to your computer and use it in GitHub Desktop.
Save yitsushi/626236 to your computer and use it in GitHub Desktop.
Program of the true Love
# Title
feelings = {:happy => 1, :suicide => 0}
supernaturals = { }
begin
# begining
me = i = Person.new
you = Angel.new
i.love you if you.love? me
# culmination
i.feel feelings[:happy] if you.love? me
i.feel feelings[:suicide] unless you.love? me
i.destroy! if i.feel? feelings[:suicide]
rescue
# solution/key point
i.give_my_soul supernaturals[:god] if supernaturals[:god].exists?
i.give_my_soul supernaturals[:evil] if supernaturals[:evil].exists?
i.give_my_soul you if you.love? me
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment