mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-15 09:15:43 +03:00
Unintended commits removed
This commit is contained in:
parent
d440c2b57e
commit
695ca8d998
1
examples/foo/.gitignore
vendored
1
examples/foo/.gitignore
vendored
@ -1 +0,0 @@
|
||||
outputs/
|
@ -1,3 +0,0 @@
|
||||
[package]
|
||||
name = "foo"
|
||||
version = "0.1.0"
|
@ -1,4 +0,0 @@
|
||||
// The program inputs for foo/src/main.leo
|
||||
[main]
|
||||
a: u32 = 1;
|
||||
b: u32 = 2;
|
@ -1,5 +0,0 @@
|
||||
// The 'foo' main function.
|
||||
function main(a: u32, b: u32) -> u32 {
|
||||
let c: u32 = a + b;
|
||||
return c
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
"version": "0.2.0",
|
||||
"configurations": []
|
||||
}
|
1
examples/test/.gitignore
vendored
1
examples/test/.gitignore
vendored
@ -1 +0,0 @@
|
||||
outputs/
|
@ -1,3 +0,0 @@
|
||||
[package]
|
||||
name = "test"
|
||||
version = "0.1.0"
|
@ -1,4 +0,0 @@
|
||||
// The program inputs for test/src/main.leo
|
||||
[main]
|
||||
a: u32 = 1;
|
||||
b: u32 = 2;
|
@ -1,5 +0,0 @@
|
||||
// The 'test' main function.
|
||||
function main(a: u32, b: u32) -> u32 {
|
||||
let c: u32 = a + b;
|
||||
return c
|
||||
}
|
Loading…
Reference in New Issue
Block a user