Test/test.rb

20 lines
232 B
Ruby
Raw Permalink Normal View History

2024-03-07 09:44:17 +00:00
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