4 lines
173 B
Text
4 lines
173 B
Text
|
|
# UPB returns the upper bound of an array, LWB the lower bound #
|
||
|
|
[]STRING fruits = ( "apple", "orange" );
|
||
|
|
print( ( ( UPB fruits - LWB fruits ) + 1, newline ) ) # prints 2 #
|