Update main.leo

This commit is contained in:
Collin Chin 2021-09-29 12:26:40 -07:00 committed by GitHub
parent 884061ffd6
commit 419a6bd454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
// The 'hello-world' main function.
function main(a: u32, b: u32) -> u32 {
const c: u32 = a + b;
let c: u32 = a + b;
return c;
}