leo/tests/compiler/records/declaration.leo

17 lines
246 B
Plaintext
Raw Normal View History

2022-06-28 05:59:06 +03:00
/*
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;
}