summaryrefslogtreecommitdiff
path: root/examples/scripts/simple-hello.scm
diff options
context:
space:
mode:
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-05-31 15:54:25 +0000
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-05-31 15:54:25 +0000
commit2de7ddb7669c6a1f964fa9ad9a874523b26f4f34 (patch)
treed1aa9e7ee83c761f46be62f9698df1471c40e5f6 /examples/scripts/simple-hello.scm
parent413a1367e205e594685f4686bc4d31d670d70511 (diff)
downloadguile-2de7ddb7669c6a1f964fa9ad9a874523b26f4f34.tar.gz
Added the new `examples' directory to the distribution.
Diffstat (limited to 'examples/scripts/simple-hello.scm')
-rw-r--r--examples/scripts/simple-hello.scm14
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)