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