gib-gab-gob/gib-gab-gob/utils.scm

8 lines
175 B
Scheme

(define-module (gib-gab-gob utils)
#:export (prompt))
;; Prompt for something in the console and convert it to a string.
(define (prompt text)
(format #t text)
(read))