The following code works.
const initial_state: CubeState = [3][3][3]u8{ [3][3]u8{
[3]u8{ 1, 2, 3 },
[3]u8{ 4, 5, 6 },
[3]u8{ 7, 8, 9 },
},
...
}
Can it be simplified in another way ?
Regards !