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

12 lines
168 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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."