leo/compiler/tests/integers/u32/sub.leo

3 lines
55 B
Plaintext
Raw Normal View History

function main(a: u32, b: u32) -> u32 {
return a - b
}