Array length: Difference between revisions

Content added Content deleted
(Add LDPL)
imported>J7M
(add example for SmallBASIC)
Line 2,849: Line 2,849:
=={{heaer|Slope}}==
=={{heaer|Slope}}==
<syntaxhighlight lang="slope">(length ["apple" "orange"])</syntaxhighlight>
<syntaxhighlight lang="slope">(length ["apple" "orange"])</syntaxhighlight>

=={{header|SmallBASIC}}==
<syntaxhighlight lang="SmallBASIC">
A = ["apple", "orange"]
print len(A)
</syntaxhighlight>


=={{header|Smalltalk}}==
=={{header|Smalltalk}}==