Make echo return a status code

* geesh/built-ins/echo.scm (echo): Return a status a code.
This commit is contained in:
Timothy Sample 2018-10-16 18:17:52 -04:00
parent 339f59d639
commit 5dae68d90a
1 changed files with 2 additions and 1 deletions

View File

@ -30,4 +30,5 @@
(args (if n? (cdr args) args)))
(display (string-join args " "))
(unless n?
(newline))))
(newline))
0))