mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-23 02:01:54 +03:00
12 lines
168 B
Plaintext
12 lines
168 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
input_file: inputs/scalar_group.in
|
||
|
*/
|
||
|
|
||
|
function main(a: scalar) -> group {
|
||
|
let b: group = (0, 1)group;
|
||
|
|
||
|
return a * b;
|
||
|
}
|