LightAndLight / ipso

A functional scripting language.

Home Page:https://ipso.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Binding order bug

LightAndLight opened this issue · comments

Program:

main : IO ()
main =
  let a = "a" in
  let b = "b" in
  let c = b in
  println a

Expected output:

a

Actual output:

b