Skip to content

Commit 1f32660

Browse files
committed
Add hello world to program-examples
1 parent bd62ad7 commit 1f32660

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[package]
2+
name = "hello"
3+
version = "1.0.0"
4+
5+
[addresses]
6+
hello = "0xba31"
7+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module hello::hello {
2+
3+
public entry fun main() : u64 {
4+
let rv = 0;
5+
rv
6+
}
7+
}
8+

0 commit comments

Comments
 (0)