ark-circom/test-vectors/mycircuit.circom

11 lines
152 B
Plaintext
Raw Permalink Normal View History

2021-07-26 09:45:07 +00:00
template Multiplier() {
signal private input a;
signal private input b;
signal output c;
c <== a*b;
}
component main = Multiplier();