Files
go-snark-study/circuitexamples/imported-example.circuit

8 lines
107 B
Plaintext

func exp3(private a):
b = a * a
c = a * b
return c
func sum(private a, private b):
c = a + b
return c