diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 23:30:14 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 23:30:14 -0700 |
commit | 5b9a9f0207a0b823c3ab2eb4fa4756d980e70f1a (patch) | |
tree | db0744245c3ed1a96b57c201bfb052eaced48a96 | |
parent | 29a92072feab70aabf1602ec94b18d000ade93bc (diff) | |
download | mu-5b9a9f0207a0b823c3ab2eb4fa4756d980e70f1a.tar.gz |
1191
-rw-r--r-- | cpp/032array.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/032array.cc b/cpp/032array.cc index 57298e73..c1d35667 100644 --- a/cpp/032array.cc +++ b/cpp/032array.cc @@ -1,4 +1,5 @@ -//: Arrays contain a variable number of elements of the same type. +//: Arrays contain a variable number of elements of the same type. Their value +//: starts with the length of the array. //: //: You can create arrays of containers, but containers can only contain //: elements of a fixed size, so you can't create containers containing arrays. |