Logo

Programming-Idioms

History of Idiom 117 > diff from v6 to v7

Edit summary for version 7 by :
[Pascal] Comment emphasize

Version 6

2016-01-15, 15:50:32

Version 7

2016-01-21, 09:14:49

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);
Code
n := length(x);
Comments bubble
x is some type of array
Comments bubble
x is some type of array.