Unintended commits removed

This commit is contained in:
howardwu 2020-07-28 22:46:38 -07:00
parent d440c2b57e
commit 695ca8d998
9 changed files with 0 additions and 32 deletions

View File

@ -1 +0,0 @@
outputs/

View File

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

View File

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

View File

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

View File

@ -1,6 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": []
}

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
}