leo/tests/compiler/records/declaration.leo
2022-06-27 16:59:06 -10:00

17 lines
246 B
Plaintext

/*
namespace: Compile
expectation: Pass
*/
record Token {
// The token owner.
owner: address,
// The Aleo balance (in gates).
balance: u64,
// The token amount.
amount: u64,
}
function main() -> bool {
return true;
}