guileIf you want to edit your input using arrow keys input these two commands just after you have started guile
(use-modules (ice-9 readline))
(activate-readline)You can preload these into guile by using this version
guile -l ~dick/lib/guile/readline.scm
guile file.nameTo load a file and then run interactively
guile -l file.nameIf the file has extension ".scm" or ".scheme" try Q:
Q name.scm
(quit)or hold down CTRL and tap D.
(help)
'() NIL
#t T
#f NIL
(use-modules (ice-9 format)adds a powerful, printf-like feature.
. . . . . . . . . ( end of section Guile -- Gnu Scheme) <<Contents | End>>