]> git.donarmstrong.com Git - lilypond.git/blob - guile18/examples/scripts/simple-hello.scm
New upstream version 2.19.65
[lilypond.git] / guile18 / examples / scripts / simple-hello.scm
1 ;;; Commentary:
2
3 ;;; This is the famous Hello-World-program, written for Guile.  
4 ;;;
5 ;;; For an advanced version, see the script `hello' in the same
6 ;;; directory.
7
8 ;;; Author: Martin Grabmueller
9 ;;; Date: 2001-05-29
10
11 ;;; Code:
12
13 (display "Hello, World!")
14 (newline)
15
16 ;;; End of file.