sasagawa888 / eisl

ISLisp interpreter/compiler
Other
281 stars 23 forks source link

Extend `line-argument` to return argv with no args #210

Closed wasamasa closed 2 years ago

wasamasa commented 2 years ago

This increases Openlisp compatibility once again.

The only incompatibility I see is that (line-argument 0) returns the command executed on Openlisp, but returns the first argument on eisl. (line-argument 1) returns the first argument on Openlisp, but returns the second argument on eisl. This makes writing interoperable programs difficult.

sasagawa888 commented 2 years ago

Thank you.