mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
5 lines
101 B
Awk
5 lines
101 B
Awk
BEGIN {
|
|
x = 100
|
|
do { y = x ; x *= 1000; print x,y } while ( y != x )
|
|
print "loop terminated"
|
|
}
|