mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-29 22:36:05 +03:00
Add template for pedersen_hash example, needs to be impl'd
This commit is contained in:
parent
01ad7a219d
commit
f325a598df
2
examples/pedersen_hash/.gitignore
vendored
Normal file
2
examples/pedersen_hash/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/output
|
||||
/.leo
|
3
examples/pedersen_hash/Leo.toml
Normal file
3
examples/pedersen_hash/Leo.toml
Normal file
@ -0,0 +1,3 @@
|
||||
[package]
|
||||
name = "pedersen_hash"
|
||||
version = "0.1.0"
|
5
examples/pedersen_hash/src/main.leo
Normal file
5
examples/pedersen_hash/src/main.leo
Normal file
@ -0,0 +1,5 @@
|
||||
// The 'pedersen_hash' main function.
|
||||
function main() -> u32 {
|
||||
let a = 1 + 1;
|
||||
return a
|
||||
}
|
Loading…
Reference in New Issue
Block a user