leo/examples/helloworld/inputs/helloworld.in

6 lines
139 B
Plaintext
Raw Normal View History

// The program input for helloworld/src/main.leo
[main]
public a: u32 = 1u32;
b: u32 = 2u32; // Input variable `b` is private by default.
2022-07-15 22:26:59 +03:00