In Javascript, it's possible to create an array with nested arrays inside it, in a single line of code. Is it possible to do the equivalent in Haxe?
var a = [["This is a nested array"], ["This is another nested array"], "This is not a nested array" ];