2022-07-12 22:48:51 +03:00
|
|
|
// The program input for helloworld/src/main.leo
|
|
|
|
[main]
|
2022-07-13 01:12:46 +03:00
|
|
|
public a: u32 = 1u32;
|
|
|
|
b: u32 = 2u32; // Input variable `b` is private by default.
|
2022-07-15 22:26:59 +03:00
|
|
|
|
2022-07-17 03:38:07 +03:00
|
|
|
[foo]
|
|
|
|
x: u64 = 5u64;
|