v0.0.10: Record updates and lambda calls
Pre-release
Pre-release
Changelog
- Add support for record updates (see #23):
{ my_record with field = value }
My_record#{ field := value }
- Add tests showing that lambda function calls are now working as expected and will be called with the right number of parameters:
let f () =
let g () = 1 in
g ()
f() ->
G = fun () -> 1 end,
G().