mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
14 lines
256 B
Plaintext
14 lines
256 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/address1.in
|
|
- inputs/address2.in
|
|
*/
|
|
|
|
function main(x: address) -> bool {
|
|
const sender: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8s7pyjh9;
|
|
|
|
return x == sender;
|
|
}
|