mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-24 10:01:40 +03:00
15 lines
321 B
Plaintext
15 lines
321 B
Plaintext
|
// The program input for tmp-test/src/main.leo
|
||
|
[main]
|
||
|
puzzle: [u8; (3, 3)] = [[1, 0, 5],
|
||
|
[0, 2, 0],
|
||
|
[7, 0, 0]];
|
||
|
|
||
|
answer: [u8; (3, 3)] = [[1, 4, 5],
|
||
|
[3, 2, 6],
|
||
|
[7, 8, 9]];
|
||
|
|
||
|
expected: bool = true;
|
||
|
|
||
|
[registers]
|
||
|
r: bool = false;
|