Logo

Programming-Idioms

History of Idiom 117 > diff from v5 to v6

Edit summary for version 6 by :
New Pascal implementation by user [Bart]

Version 5

2016-01-13, 14:05:08

Version 6

2016-01-15, 15:50:32

Idiom #117 Get list size

Set n to the number of elements of list x.

Idiom #117 Get list size

Set n to the number of elements of list x.

Code
n := length(x);
Comments bubble
x is some type of array