Skip to content

Instantly share code, notes, and snippets.

@he-and-her
Created April 24, 2017 03:55
Show Gist options
  • Save he-and-her/2fccd11b39956f11c66c90cf0df384d1 to your computer and use it in GitHub Desktop.
Save he-and-her/2fccd11b39956f11c66c90cf0df384d1 to your computer and use it in GitHub Desktop.
Null patter
class Body
def ego
ego || NullBeing.new.ego
end
end
class NullBeing
def ego
# "In the end, we are self-perceiving,
# self-inventing, locked-in mirages
# that are little miracles of self-reference."
self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment