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