h3rald / min

A small but practical concatenative programming language and shell
https://min-lang.org
MIT License
311 stars 23 forks source link

all? always return true #34

Closed Tyler-Yocolano closed 6 years ago

Tyler-Yocolano commented 6 years ago

I believe the all? function isn't working correctly. No matter what I provide the function, it always returns true. For example..

(true) (false ==) all? -> true

h3rald commented 6 years ago

Wow, yes you are right. And any? is broken as well. Fixing it now...

Thanks!