7 lines
89 B
Text
7 lines
89 B
Text
|
|
fruit = array(2)
|
||
|
|
fruit[0] = "apple"
|
||
|
|
fruit[1] = "orange"
|
||
|
|
println len(fruit)
|
||
|
|
|
||
|
|
// outputs 2
|