~vcs-imports/gawk/master

1
2
3
4
5
6
7
BEGIN {
	RS = ""
	FS = ":"
	s = "a:b\nc:d"
	print split(s,a)
	print length(a[2])
}