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.

12 lines
158 B

4 years ago
  1. function func1(a,b) {
  2. return a+b;
  3. }
  4. template Main() {
  5. signal input in;
  6. signal output out;
  7. out <== func1(in, 3);
  8. }
  9. component main = Main();