Closed kishtarn555 closed 1 month ago
Make it so the opertors use short circuit evaluation. The following "code" should leave a single beeper
class program { bool func() { putbeeper(); return true; } program() { if (func() || func()) { move(); } } }
Make it so the opertors use short circuit evaluation. The following "code" should leave a single beeper