leo/examples/helloworld/inputs/helloworld.in
2022-07-15 12:26:59 -07:00

10 lines
162 B
Plaintext

// The program input for helloworld/src/main.leo
[main]
public a: u32 = 1u32;
b: u32 = 2u32; // Input variable `b` is private by default.
[foo]
a: u64 = 1u64;