RosettaCodeData/Task/Short-circuit-evaluation/AWK/short-circuit-evaluation.awk

18 lines
204 B
Awk
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
#!/usr/bin/awk -f
BEGIN {
2014-01-17 05:32:22 +00:00
print (a(1) && b(1))
print (a(1) || b(1))
print (a(0) && b(1))
print (a(0) || b(1))
2013-10-27 22:24:23 +00:00
}
function a(x) {
2014-01-17 05:32:22 +00:00
print " x:"x
return x
2013-10-27 22:24:23 +00:00
}
function b(y) {
2014-01-17 05:32:22 +00:00
print " y:"y
return y
2013-10-27 22:24:23 +00:00
}