File: simple-hello.scm

package info (click to toggle)
guile-3.0 3.0.11-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 35,268 kB
  • sloc: ansic: 186,093; lisp: 101,869; sh: 4,663; makefile: 1,857; awk: 239; javascript: 9
file content (16 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (24)
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.