diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-01 21:53:06 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-01 21:53:06 +0200 |
commit | 02ea2bf02041509c78708b904c85093b2837acde (patch) | |
tree | 4b5803e1ee32bae0f5998269ddd6914bae043aa7 /doc/gawk.1 | |
parent | 5712ad9b220c097371f0e83d09c3b1ce5e511c55 (diff) | |
download | egawk-02ea2bf02041509c78708b904c85093b2837acde.tar.gz egawk-02ea2bf02041509c78708b904c85093b2837acde.tar.bz2 egawk-02ea2bf02041509c78708b904c85093b2837acde.zip |
Lots of documentation changes.
Diffstat (limited to 'doc/gawk.1')
-rw-r--r-- | doc/gawk.1 | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1168,6 +1168,20 @@ The .B delete statement may also be used to delete the entire contents of an array, just by specifying the array name without a subscript. +.PP +.I gawk +supports true multidimensional arrays. It does not require that +such arrays be ``rectangular'' as in C or C++. +For example: +.RS +.ft B +.nf +a[1] = 5 +a[2][1] = 6 +a[2][2] = 7 +.fi +.ft +.RE .SS Variable Typing And Conversion .PP Variables and fields |