You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
236 B

4 years ago
  1. template AddConst(c) {
  2. signal input in;
  3. signal output out;
  4. var a = 2;
  5. var b = 3;
  6. a=a+b;
  7. a=a+4;
  8. a=a+c;
  9. out <== 5 + a + in;
  10. }
  11. // It should out <== in + 1+2+3+4+5 = in + 15
  12. component main = AddConst(1);