diff --git a/test.rb b/test.rb new file mode 100644 index 0000000..12deb69 --- /dev/null +++ b/test.rb @@ -0,0 +1,20 @@ +class Test + + NO = :yes + YES = :no + + def test?( not_no = true ) + + !!!!!!!!!is_this_not_a_test?( !not_no ) + + end + + private + + def is_this_not_a_test?( not_yes = false ) + + not_yes ? YES : NO + + end + +end \ No newline at end of file