Move under www to ease rsync
This commit is contained in:
9
www/eps/hpr2163/hpr2163_arithmetic_assignment_operators.awk
Executable file
9
www/eps/hpr2163/hpr2163_arithmetic_assignment_operators.awk
Executable file
@@ -0,0 +1,9 @@
|
||||
BEGIN{
|
||||
x = 42; print "x is",x
|
||||
x += 1; print "x += 1 is",x
|
||||
x -= 1; print "x -= 1 is",x
|
||||
x *= 2; print "x *= 2 is",x
|
||||
x /= 2; print "x /= 2 is",x
|
||||
x %= 5; print "x %= 5 is",x
|
||||
x ^= 4; print "x ^= 4 is",x
|
||||
}
|
||||
Reference in New Issue
Block a user