The Scheme Programming Language
Hello World Example Program
Click below to go directly to a specific section:
Description
|
Source Code
|
Sample Run
|
Program Notes
Description
This program prints the phrase "Hello World".
Source Code
(define hello-world (lambda () (begin (write ‘Hello-World) (newline) (hello-world))))
Sample Run
Hello-World
Program Notes
This program was submited by indigo@owlnet.rice.edu (Scott Ruthfield)
Last modified: 01:30 PM on 11/25/1996