Index ¦ Archives

Scheme

Scheme is a functional programming language and one of the two main dialects of the programming language Lisp. Unlike Common Lisp, the other main dialect, Scheme follows a minimalist design philosophy specifying a small standard core with powerful tools for language extension.

Run

guile

(define name "World")
(display (string-append "Hello " name "!"))
(newline)

Scheme

© 2000-2022 by Daniel Pimentel (d4n1). Under MIT.