mirror of
https://github.com/logos-storage/circom-compat-ffi.git
synced 2026-01-02 12:53:10 +00:00
10 lines
151 B
Plaintext
10 lines
151 B
Plaintext
template Multiplier() {
|
|
signal private input a;
|
|
signal private input b;
|
|
signal output c;
|
|
|
|
c <== a*b;
|
|
}
|
|
|
|
component main = Multiplier();
|