11.09.2012 16:51, Felipe Monteiro de Carvalho пишет:
Hello,
Can I write constants of a 2D array? I am trying to convert some C++
code which uses this ... so far I tryed:
const number_return_map: array[0..7][0..7] of U8 =
(
( 15, 14, 13, 12, 11, 10, 9, 8 ),
( 14, 0, 1, 3, 6, 10, 10,
On Tue, Sep 11, 2012 at 2:58 PM, Vincent Snijders
wrote:
> const number_return_map: array[0..7,0..7] of byte =
Ah, nice, thanks =) Now it works... and the syntax is almost the same
as in C++ which facilitates the conversion
--
Felipe Monteiro de Carvalho
2012/9/11 Felipe Monteiro de Carvalho :
> Hello,
>
> Can I write constants of a 2D array? I am trying to convert some C++
> code which uses this ... so far I tryed:
>
> const number_return_map: array[0..7][0..7] of U8 =
const number_return_map: array[0..7,0..7] of byte =
Vincent
_