h3rald / min

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

Docs: system #18

Closed mwgkgk closed 6 years ago

mwgkgk commented 6 years ago

Current version of the docs:

system

'sym ⇒ ∅

Executes the external command 'sym in the current directory.

This differs from actual behavior where system pushes return code on stack.

"ls" system
something.min
{1} -> 0
"ls /wrong" system
ls: cannot access '/wrong': No such file or directory
{2} -> 2