1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00
guile/examples/scripts/simple-hello.scm
2001-05-31 15:54:25 +00:00

14 lines
266 B
Scheme

;;; Commentary:
;;; This is the famous Hello-World-program, written for Guile.
;;;
;;; For an advanced version, see the script `hello' in the same
;;; directory.
;;; Author: Martin Grabmueller
;;; Date: 2001-05-29
;;; Code:
(display "Hello, World!")
(newline)