Scheme


(define hello-world
  (lambda ()
    (begin
      (write 'Hello-World)
      (newline)
      (hello-world))))    


submitted by: indigo@owlnet.rice.edu (Scott Ruthfield)


Looping version
(define hello-world
  (lambda ()
    (display "Hello, World!")
    (newline)
    (hello-world)))
(hello-world)


submitted by: mcornick@d.umn.edu (Mandy Cornick)