Remove the test folder

This commit is contained in:
howardwu 2020-06-28 18:53:40 -07:00
parent c1243a2e74
commit a262622f60
4 changed files with 0 additions and 13 deletions

View File

@ -1 +0,0 @@
outputs/

View File

@ -1,3 +0,0 @@
[package]
name = "test"
version = "0.1.0"

View File

@ -1,4 +0,0 @@
// The program inputs for test/src/main.leo
[main]
a: u32 = 1;
b: u32 = 2;

View File

@ -1,5 +0,0 @@
// The 'test' main function.
function main(a: u32, b: u32) -> u32 {
let c: u32 = a + b;
return c
}