make echo builtin

This commit is contained in:
Rutger van Beusekom 2016-10-19 22:18:13 +02:00
parent fb6a7d0279
commit fc8b856110
1 changed files with 1 additions and 0 deletions

View File

@ -148,6 +148,7 @@ copyleft.
;;(format (current-error-port) "builtin: ~s\n" ast)
(match ast
(('append ('glob "cd") arg) `(apply chdir ,arg))
(('append ('glob "echo") args ...) `(apply stdout ,@args))
(('for-each rest ...) ast)
(('if rest ...) ast)
(_ #f)))