3 lines
141 B
Vala
3 lines
141 B
Vala
var fruit = new string[] { "apple", "orange" };
|
|
string[] fruit = new string[] { "apple", "orange" };
|
|
string[] fruit = { "apple", "orange" };
|