mirror of
https://github.com/ProvableHQ/leo.git
synced 2025-01-05 09:16:21 +03:00
11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
input_file: inputs/scalar_group.in
|
||
|
*/
|
||
|
|
||
|
function main(a: scalar) -> group {
|
||
|
let element: group = 0group;
|
||
|
|
||
|
return element * a;
|
||
|
}
|