mirror of
https://github.com/logos-storage/circom-compat.git
synced 2026-01-02 13:03:08 +00:00
Co-authored-by: jakehemmerle <jakehemmerle@protonmail.com> Co-authored-by: Carlos Pérez <37264926+CPerezz@users.noreply.github.com>
13 lines
158 B
Plaintext
13 lines
158 B
Plaintext
pragma circom 2.1.0;
|
|
|
|
template Multiplier() {
|
|
signal input a;
|
|
signal input b;
|
|
signal output c;
|
|
|
|
c <== a*b;
|
|
}
|
|
|
|
component main = Multiplier();
|
|
|