bug-gawk
[Top][All Lists]
Advanced

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

Debugger: Incomplete print of arrays of arrays


From: Hermann Peifer
Subject: Debugger: Incomplete print of arrays of arrays
Date: Fri, 1 Dec 2023 17:29:24 +0100
User-agent: Mozilla Thunderbird

Hi again.

Printing array "a" works fine, but there is some truncation going on
when printing "b". See below.

Hermann

> cat test.awk
BEGIN {
        a[1] = 1
        a[2] = 2
        b[1][2][3] = 123
        b[2][2][3] = 223
}

> gawk -D -f test.awk
gawk> r
Starting program:
Program exited normally with exit value: 0
gawk> p @a
a["1"] = 1
a["2"] = 2
gawk> p @b
2["3"] = 123
2["3"] = 223
gawk> exit



reply via email to

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