ligo/src/test/contracts/evaluation_tests.ligo

11 lines
133 B
Plaintext
Raw Normal View History

2020-01-23 14:29:04 +01:00
type myrec is record
foo : nat;
bar : string;
end;
const a : myrec = record
foo = 0n;
bar = "bar";
end;
const b : int = 2 ;