ligo/src/test/contracts/variant.religo

9 lines
140 B
Plaintext
Raw Normal View History

2019-12-10 13:47:31 +00:00
type foobar =
2020-03-02 18:01:56 +01:00
Foo (int)
| Bar (bool)
| Kee (nat);
2019-12-10 13:47:31 +00:00
2020-03-02 18:01:56 +01:00
let foo: foobar = Foo (42);
let bar: foobar = Bar (true);
let kee: foobar = Kee (23n);