github.com/benhoyt/goawk@v1.8.1/testdata/t.3.x (about)

     1  {
     2  x = $1
     3  while (x > 1) {
     4  	print x
     5  	x = x / 10
     6  }
     7  }