add allow import circuits in circuits language compiler

This commit is contained in:
arnaucube
2019-05-30 21:39:00 +02:00
parent 165699b58f
commit de5b60b826
8 changed files with 132 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
func exp3(private a):
b = a * a
c = a * b
return c
func sum(private a, private b):
c = a + b
return c