mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-29 13:14:05 +03:00
7 lines
154 B
Plaintext
7 lines
154 B
Plaintext
|
// The program input for point/src/main.leo
|
||
|
[main]
|
||
|
public a: u32 = 1u32;
|
||
|
b: u32 = 2u32; // Input variable `b` is private by default.
|
||
|
|
||
|
[foo]
|
||
|
x: u64 = 5u64;
|