aboutsummaryrefslogtreecommitdiffstats
path: root/test/setrec1.awk
blob: 3da1aa1073da06bea5548a19575301a234fa97c9 (plain)
1
2
3
4
5
6
7
8
9
function reassign(x, y) {
   $0 = x
   print y
}

BEGIN {
   $0 = substr("geronimo", 5, 3)
   reassign(" 52", $1)
}