elchemy icon indicating copy to clipboard operation
elchemy copied to clipboard

Allow self reference of variables in let..in even when not functions

Open wende opened this issue 7 years ago • 0 comments

let 
  x _ = x
in

Works

let
  x = 0 |> andThen \a -> x
in

Doesn't

wende avatar Nov 26 '17 23:11 wende