RosettaCodeData/Task/Conditional-structures/Make/conditional-structures-3.make

12 lines
168 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
C=0
if: true false
true:
@expr $(C) >/dev/null && exit 0 || exit 1
@echo "was true."
false:
@expr $(C) >/dev/null && exit 1 || exit 0
@echo "was false."