RosettaCodeData/Task/Short-circuit-evaluation/Stata/short-circuit-evaluation-2.stata
2023-07-01 13:44:08 -04:00

15 lines
177 B
Text

: call(0,1)
and: a
or: a b
1 2
+---------+
1 | 0 1 |
+---------+
: call(1,1)
and: a b
or: a
1 2
+---------+
1 | 1 1 |
+---------+