mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-12 14:29:28 +00:00
7 lines
61 B
Awk
7 lines
61 B
Awk
|
BEGIN {
|
||
|
print b += b += 1
|
||
|
b = 6
|
||
|
print b += b++
|
||
|
print b
|
||
|
}
|