mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 19:51:52 +03:00
14 lines
203 B
Plaintext
14 lines
203 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_files: ../inputs/u8.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(a: u8) -> u8 {
|
|
let b: u8 = 1u8;
|
|
b &= a;
|
|
|
|
return b;
|
|
}}
|