Add template for pedersen_hash example, needs to be impl'd

This commit is contained in:
howardwu 2020-05-16 19:42:49 -07:00
parent 01ad7a219d
commit f325a598df
3 changed files with 10 additions and 0 deletions

2
examples/pedersen_hash/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/output
/.leo

View File

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

View File

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