diff --git a/master/CHANGELOG/index.html b/master/CHANGELOG/index.html index 4264f23..b3bc1a1 100644 --- a/master/CHANGELOG/index.html +++ b/master/CHANGELOG/index.html @@ -1308,6 +1308,9 @@ and this project adheres to Semant
  • Compiler warnings for the follwing: shadowing, negative spends, division by zero, unused functions, unused includes, unused stateful annotations, unused variables, unused parameters, unused user-defined type, dead return value.
  • The pipe operator |> [1, 2, 3] |> List.first |> Option.is_some // Option.is_some(List.first([1, 2, 3]))
  • +
  • Allow binary operators to be used as lambdas + function sum(l : list(int)) : int = foldl((+), 0, l) + function logical_and(x, y) = (&&)(x, y)
  • Changed