7 lines
126 B
Text
7 lines
126 B
Text
|
|
import ballerina/io;
|
||
|
|
|
||
|
|
public function main() {
|
||
|
|
string[2] fruits = ["apple", "orange"];
|
||
|
|
io:println(fruits.length());
|
||
|
|
}
|