diff --git a/priv/stdlib/Func.aes b/priv/stdlib/Func.aes index 42cef77..5c4585e 100644 --- a/priv/stdlib/Func.aes +++ b/priv/stdlib/Func.aes @@ -2,7 +2,7 @@ namespace Func = function id(x : 'a) : 'a = x - function const(x : 'a) : 'b => 'a = (y) => x + function const(x : 'a) : 'b => 'a = (_) => x function flip(f : ('a, 'b) => 'c) : ('b, 'a) => 'c = (b, a) => f(a, b)