4 lines
95 B
Vala
4 lines
95 B
Vala
void main() {
|
|
string[] fruit = {"apple", "orange"};
|
|
stdout.printf("%d\n", fruit.length);
|
|
}
|