PlutoLang / Pluto

A superset of Lua 5.4 with a focus on general-purpose programming.
https://pluto-lang.org
MIT License
367 stars 22 forks source link

New Warning: Attempted necromancy #838

Open Sainan opened 5 months ago

Sainan commented 5 months ago
if (a := false) and true then
else
    print(a) -- prints nil instead of false, might need explanation
end