buzz-language / buzz

👨‍🚀 buzz, A small/lightweight statically typed scripting language
https://buzz-lang.dev
MIT License
1.15k stars 31 forks source link

Warn or fail when expression value is discarded #162

Closed giann closed 9 months ago

giann commented 10 months ago
fun hey() -> 12;

|...

hey(); | -> Discarded expression error/warning

_ = hey(); | ok