summaryrefslogtreecommitdiff
path: root/test/rstest1.awk
blob: 3eb88366cd6df767ec5773c912276c38d92339a2 (plain)
1
2
3
4
5
6
7
BEGIN {
	RS = ""
	FS = ":"
	s = "a:b\nc:d"
	print split(s,a)
	print length(a[2])
}