[ create a new paste ] login | about

Link: http://codepad.org/nwvPpidC    [ raw code | output | fork ]

Scheme, pasted on Apr 4:
1
2
3
4
5
6
7
(define hello-world
  (lambda ()
    (display "Hello, World!")
    (newline)
    ))

(hello-world)


Output:
1
Hello, World!


Create a new paste based on this one


Comments: