/* Fourth example from the PSLRM, 2nd Ed. */
generalBooleanTest("false false or", false);
/* Fifth example from the PSLRM, 2nd Ed. */
final PsInput input = new PsStringInput("17 5 or");
final PsInterpreter4a interpreter = new PsInterpreter4a(input, null);
interpreter.process();
final PsObject object = interpreter.getOperandStack().pop();
assertTrue(object instanceof PsInteger);
assertEquals(new BigDecimal(21), ((PsInteger) object).getValue());