Jump to content

Array length: Difference between revisions

add REXX
(Added EchoLisp)
(add REXX)
Line 36:
2
>>> </lang>
 
=={{header|REXX}}==
<lang rexx>/* REXX ------------------------------------------------
* The compond variable a. implements an array
* By convention, a.0 contains the number of elements
*---------------------------------------------------*/
a.=0 /* initialize the "array" */
call store 'apple'
Call store 'orange'
Say 'There are' a.0 'elements in the array:'
Do i=1 To a.0
Say 'Element' i':' a.i
End
Exit
store: Procedure Expose a.
z=a.0+1
a.z=arg(1)
a.0=z
Return</lang>
{{out}}
<pre>E:\>There are 2 elements in the array:
Element 1: apple
Element 2: orange</pre>
 
=={{header|SQL}}==
2,300

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.