To compile this Aleo program, run:
snarkvm buildTo execute this Aleo program, run:
snarkvm run helloChanged the unsigned integer byte from u32 to u16
program hello.aleo {
transition main(public a: u16, b: u16) -> u16 {
let c: u16 = a + b;
return c;
}
}Run
leo run main 5u16 5u16