Add the colon built-in

* geesh/built-ins/colon.scm: New file.
* Makefile.am: Add it.
* geesh/built-ins.scm (*special-built-ins*): Add colon.
This commit is contained in:
Timothy Sample 2018-11-25 14:24:35 -05:00
parent 36e4811d22
commit 2c1dd2d67e
3 changed files with 30 additions and 1 deletions

View File

@ -43,6 +43,7 @@ check-spec:
MODULES = \
geesh/built-ins/break.scm \
geesh/built-ins/cd.scm \
geesh/built-ins/colon.scm \
geesh/built-ins/continue.scm \
geesh/built-ins/echo.scm \
geesh/built-ins/export.scm \

View File

@ -33,7 +33,7 @@
;; Special built-ins take precedence over any other command.
(define *special-built-ins*
`(("." . ,undefined)
(":" . ,undefined)
(":" . ,(@@ (geesh built-ins colon) main))
("break" . ,(@@ (geesh built-ins break) main))
("continue" . ,(@@ (geesh built-ins continue) main))
("eval" . ,undefined)

28
geesh/built-ins/colon.scm Normal file
View File

@ -0,0 +1,28 @@
;;; The Geesh Shell Interpreter
;;; Copyright 2018 Timothy Sample <samplet@ngyro.com>
;;;
;;; This file is part of Geesh.
;;;
;;; Geesh is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation, either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; Geesh is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Geesh. If not, see <http://www.gnu.org/licenses/>.
(define-module (geesh built-ins colon))
;;; Commentary:
;;;
;;; The 'colon' utility.
;;;
;;; Code:
(define (main . args)
0)