mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
ad86b23c01
- in Leo test envs can only be snake_cased - while we suggest naming inputs and folders in kebab-case - this patch searches for both test_input and test-input options in inputs
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;
|