mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 09:02:58 +03:00
12 lines
205 B
Plaintext
12 lines
205 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/eq.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(a: group, b: group) -> bool {
|
|
console.assert(a == b);
|
|
return a == b;
|
|
}}
|