xref: /freebsd/contrib/one-true-awk/bugs-fixed/split-fs-from-array.awk (revision 54dfc97b0bd99f1c3bcbb37357cf28cd81a7cf00)
1BEGIN {
2        a[1] = "elephantie"
3        a[2] = "e"
4        print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
5}
6