bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Gawk manual section: 8.6 Arrays of Arrays


From: Hermann Peifer
Subject: Gawk manual section: 8.6 Arrays of Arrays
Date: Sun, 22 Oct 2023 07:43:11 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.15.1

At the end of the section, an issue with sub-arrays is mentioned [1]. It
could perhaps be clarified that the mentioned issue is gone now [2].

Hermann

[1]
> gawk-5.1.1 'BEGIN {split("a b c d", b[1]); print b[1][1]}'
gawk-5.1.1: cmd. line:1: fatal: split: second argument is not an array

[2]
> gawk-5.2.0 'BEGIN {split("a b c d", b[1]); print b[1][1]}'
a





reply via email to

[Prev in Thread] Current Thread [Next in Thread]