Array length: Difference between revisions

→‎{{header|REBOL}}: Simplified REBOL implementation
m (→‎{{header|REBOL}}: Removed output section)
(→‎{{header|REBOL}}: Simplified REBOL implementation)
Line 2,547:
=={{header|REBOL}}==
<syntaxhighlight lang="rebol">
array:>> length? ["apples" "oranges"]
REBOL [
== 2
Title: "Array length"
Date: 21-Dec-2022
Author: "Earldridge Jazzed Pineda"
]
 
array: ["apples" "oranges"]
print length? array
</syntaxhighlight>
 
175

edits