summaryrefslogtreecommitdiff
path: root/examples/scripts/simple-hello.scm
blob: b46bc36ffb3c157df04cf15a644e6220eb5f2109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; 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)

;;; End of file.