impl leo build for multiple aleo files

This commit is contained in:
collin 2022-07-14 18:07:57 -07:00
parent 91857e81c8
commit 749a7682cd
3 changed files with 7 additions and 7 deletions

View File

@ -0,0 +1,4 @@
program other.aleo;
interface other:
a as u64;

View File

@ -1,7 +0,0 @@
program helloworld.aleo;
function main:
input r0 as u32.public;
input r1 as u32.private;
add r0 r1 into r2;
output r2 as u32.private;

View File

@ -0,0 +1,3 @@
circuit Other {
a: u64,
}