leo/examples/helloworld/inputs/helloworld.in
2022-07-16 17:38:07 -07:00

7 lines
159 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]
x: u64 = 5u64;