Skip to content

Instantly share code, notes, and snippets.

@leoallen85
Created May 17, 2016 18:56
Show Gist options
  • Save leoallen85/b03d5df91b362fd8fdb19c0234125592 to your computer and use it in GitHub Desktop.
Save leoallen85/b03d5df91b362fd8fdb19c0234125592 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