diff --git a/.gitignore b/.gitignore index 53a9838170..943e10b577 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ **/target /tmp/ +/temp/ **.idea/ *.DS_Store .vscode @@ -23,4 +24,4 @@ sccache*/ *.bat # environment -.env \ No newline at end of file +.env diff --git a/temp/.gitignore b/temp/.gitignore deleted file mode 100644 index f721f7f6f4..0000000000 --- a/temp/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -.env -*.avm -*.prover -*.verifier -outputs/ diff --git a/temp/build/README.md b/temp/build/README.md deleted file mode 100644 index 4443cf700d..0000000000 --- a/temp/build/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# temp.aleo - -## Build Guide - -To compile this Aleo program, run: -```bash -snarkvm build -``` - -To execute this Aleo program, run: -```bash -snarkvm run hello -``` diff --git a/temp/build/main.aleo b/temp/build/main.aleo deleted file mode 100644 index b6fba11e20..0000000000 --- a/temp/build/main.aleo +++ /dev/null @@ -1,7 +0,0 @@ -program temp.aleo; - -function main: - input r0 as u32.public; - input r1 as u32.private; - add r0 r1 into r2; - output r2 as u32.private; diff --git a/temp/build/program.json b/temp/build/program.json deleted file mode 100644 index 70f26d0033..0000000000 --- a/temp/build/program.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "program": "temp.aleo", - "version": "0.0.0", - "description": "", - "license": "MIT" -} diff --git a/temp/leo.lock b/temp/leo.lock deleted file mode 100644 index c4293b3b9f..0000000000 --- a/temp/leo.lock +++ /dev/null @@ -1 +0,0 @@ -package = [] diff --git a/temp/program.json b/temp/program.json deleted file mode 100644 index 85f0c159ba..0000000000 --- a/temp/program.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "program": "temp.aleo", - "version": "0.1.0", - "description": "", - "license": "MIT", - "dependencies": null, - "dev_dependencies": null -} \ No newline at end of file diff --git a/temp/src/main.leo b/temp/src/main.leo deleted file mode 100644 index 909b1e0838..0000000000 --- a/temp/src/main.leo +++ /dev/null @@ -1,7 +0,0 @@ -// The 'temp' program. -program temp.aleo { - transition main(public a: u32, b: u32) -> u32 { - let c: u32 = a + b; - return c; - } -} diff --git a/temp/tests/test.leo b/temp/tests/test.leo deleted file mode 100644 index 9fbebb7f59..0000000000 --- a/temp/tests/test.leo +++ /dev/null @@ -1,13 +0,0 @@ -// A Leo test file. -// To learn more about testing your program, see the documentation at https://docs.leo-lang.org -import helloworld.aleo; - -program test.aleo { - @compiled_test - @interpreted_test - transition test_helloworld() {{ - let result: u32 = helloworld.aleo/main(1u32, 2u32); - assert_eq(result, 3u32); - }} -} -