Skip to content

Instantly share code, notes, and snippets.

@leoallen85
Created May 17, 2016 18:58
Show Gist options
  • Save leoallen85/97352fc26694fcde661c1b8674b6e0bd to your computer and use it in GitHub Desktop.
Save leoallen85/97352fc26694fcde661c1b8674b6e0bd to your computer and use it in GitHub Desktop.
class Proposition
def initialize(sentence)
@sentence = sentence
end
def false?
subject.false?
end
def subject
return self if @sentence.include?("This sentence")
p "I can't evaluate as I'm not clever enough"
end
end
prop = Proposition.new("This sentence is false")
p prop.false?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment