mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-07 11:16:42 +01:00
11 lines
123 B
Plaintext
11 lines
123 B
Plaintext
template T1() {
|
|
signal input in;
|
|
signal output out;
|
|
|
|
out <== in**2/3;
|
|
}
|
|
|
|
function F1(a) {
|
|
return a**2/3;
|
|
}
|