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