1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/examples/factorization.code
2017-11-26 00:37:53 +01:00

4 lines
93 B
Text

// a and b are factorization of c
def main(c, private a, private b):
c == a * b
return 1