2019-02-26 01:29:29 +04:00
|
|
|
type t is int * string
|
|
|
|
type u is t
|
|
|
|
type v is record foo: key; bar: mutez; baz: address end
|
2019-03-14 17:04:20 +04:00
|
|
|
type w is K of (U of int) // v * u
|
2019-02-26 01:29:29 +04:00
|
|
|
|
2019-03-14 12:59:26 +04:00
|
|
|
type i is int;
|
2019-02-26 01:29:29 +04:00
|
|
|
|
2019-03-14 12:59:26 +04:00
|
|
|
const x : v =
|
|
|
|
record
|
|
|
|
foo = 4;
|
|
|
|
bar = 5;
|
|
|
|
baz = 0x3244
|
|
|
|
end
|
2019-03-11 15:51:50 +04:00
|
|
|
|
2019-02-28 18:46:34 +04:00
|
|
|
(* Block comment *)
|
2019-02-26 01:29:29 +04:00
|
|
|
|
2019-03-14 17:04:20 +04:00
|
|
|
entrypoint g (var s : storage; const l : list (int))
|
|
|
|
: operation (list) is
|
2019-03-14 16:19:52 +04:00
|
|
|
var m : map (int, string) := empty_map;
|
2019-03-14 12:59:26 +04:00
|
|
|
var y : v := copy x with record bar = 7 end;
|
|
|
|
|
|
|
|
function f (const x : int) : int is
|
2019-02-28 18:46:34 +04:00
|
|
|
var y : int := 5 - x
|
|
|
|
const z : int = 6
|
|
|
|
begin
|
|
|
|
y := x + y
|
|
|
|
end with y * 2
|
2019-03-14 12:59:26 +04:00
|
|
|
|
2019-02-26 01:29:29 +04:00
|
|
|
begin
|
2019-03-14 16:19:52 +04:00
|
|
|
y.[4] := "hello";
|
2019-02-26 01:29:29 +04:00
|
|
|
match l with
|
2019-03-14 12:59:26 +04:00
|
|
|
[] -> null
|
2019-03-07 20:06:02 +04:00
|
|
|
| h#t -> q (h+2)
|
2019-03-11 15:51:50 +04:00
|
|
|
end;
|
|
|
|
begin
|
|
|
|
g (Unit);
|
|
|
|
fail "in extremis"
|
2019-02-26 01:29:29 +04:00
|
|
|
end
|
2019-03-14 17:04:20 +04:00
|
|
|
end with ([]: operation (list))
|