9 lines
208 B
Ruby
9 lines
208 B
Ruby
|
module Virtual
|
||
|
|
||
|
# implicit means there is no explcit test involved.
|
||
|
# normal ruby rules are false and nil are false, EVERYTHING else is true (and that includes 0)
|
||
|
class IsTrueBranch < Branch
|
||
|
end
|
||
|
|
||
|
end
|