simple-hello.scm 284 B

1234567891011121314151617
  1. ;;; Commentary:
  2. ;;; This is the famous Hello-World-program, written for Guile.
  3. ;;;
  4. ;;; For an advanced version, see the script `hello' in the same
  5. ;;; directory.
  6. ;;; Author: Martin Grabmueller
  7. ;;; Date: 2001-05-29
  8. ;;; Code:
  9. (display "Hello, World!")
  10. (newline)
  11. ;;; End of file.