mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
// The program input for interest/src/main.leo
|
|
[fixed_iteration_interest]
|
|
capital: u32 = 80u32;
|
|
rate: u32 = 5u32; // 5%
|
|
|
|
[bounded_iteration_interest]
|
|
capital: u32 = 80u32;
|
|
rate: u32 = 5u32; // 5%
|
|
iterations: u8 = 10u8;
|