diff options
Diffstat (limited to 'examples/scripts/simple-hello.scm')
-rw-r--r-- | examples/scripts/simple-hello.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/scripts/simple-hello.scm b/examples/scripts/simple-hello.scm new file mode 100644 index 000000000..713a1aee4 --- /dev/null +++ b/examples/scripts/simple-hello.scm @@ -0,0 +1,14 @@ +;;; 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) |