mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 15:15:47 +03:00
22 lines
378 B
Plaintext
22 lines
378 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: inputs/nine.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
// The maximum number of arguments to a function is 8.
|
|
function main(
|
|
a: u8,
|
|
b: u8,
|
|
c: u8,
|
|
d: u8,
|
|
e: u8,
|
|
f: u8,
|
|
g: u8,
|
|
h: u8,
|
|
i: u8,
|
|
) -> u8 {
|
|
return a + b + c + d + e + f + g + h + i
|
|
}}
|