kozily / admin

Tasks, project documentation and wiki repository
0 stars 0 forks source link

Parsing cero 0 as expression #169

Closed smpiano closed 6 years ago

smpiano commented 6 years ago

This example does not compile

local Fact in
  Fact=fun {$ N}
    if N==0 then
      1
    else
      N * {Fact N-1}
    end
  end
end