lib/instructions/bool/bool_or.rb in nudge-0.2.6 vs lib/instructions/bool/bool_or.rb in nudge-0.2.7
- old
+ new
@@ -1,4 +1,12 @@
+# pops the top 2 items of the +:bool+ stack;
+# pushes a ValuePoint with their logical OR onto the +:bool+ stack
+#
+# *needs:* 2 +:bool+
+#
+# *pushes:* 1 +:bool+
+#
+
class BoolOrInstruction < Instruction
def preconditions?
needs :bool, 2
end