12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- val d = new string[,,](5,5,5, "HelloWorld");
-
- var projection = (value => "" + value) as function(value as string`borrow) as string;
- val e = new string[,,]<string>(d, projection);
-
-
- val a = new string[](5, "HelloWorld");
- val b = new string[]<string>(a, projection);
-
- println(e[0,0,0]);
|