mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
14 lines
266 B
Scheme
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)
|