xref: /minix3/tests/usr.bin/awk/d_assign_NF.awk (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc# $NetBSD: d_assign_NF.awk,v 1.1 2012/03/11 18:35:59 jruoho Exp $
2*11be35a1SLionel Sambuc
3*11be35a1SLionel Sambuc{
4*11be35a1SLionel Sambuc	NF = 2
5*11be35a1SLionel Sambuc	print "$0=`" $0 "`"
6*11be35a1SLionel Sambuc	print "$3=`" $3 "`"
7*11be35a1SLionel Sambuc	print "$4=`" $4 "`"
8*11be35a1SLionel Sambuc	NF = 3
9*11be35a1SLionel Sambuc	print "$0=`" $0 "`"
10*11be35a1SLionel Sambuc	print "$3=`" $3 "`"
11*11be35a1SLionel Sambuc	print "$4=`" $4 "`"
12*11be35a1SLionel Sambuc	NF = 4
13*11be35a1SLionel Sambuc	print "$0=`" $0 "`"
14*11be35a1SLionel Sambuc	print "$3=`" $3 "`"
15*11be35a1SLionel Sambuc	print "$4=`" $4 "`"
16*11be35a1SLionel Sambuc}
17