Up: Handledningar för Scheme   [Contents][Index]


1.1 En snabbkurs i Scheme

Guix använder Guile-implementationen av Scheme. För att börja leka med språket kan du installera det med guix install guile och starta en REPL—en förkortning av read-eval-print loop—genom att köra guile från kommandoraden.

Alternativt kan du också köra guix shell guile -- guile om du hellre vill undvika att Guile installeras i din användarprofil.

In the following examples, lines show what you would type at the REPL; lines starting with “⇒” show evaluation results, while lines starting with “-|” show things that get printed. See Using Guile Interactively in GNU Guile Reference Manual, for more details on the REPL.

Going further: Scheme is a language that has been widely used to teach programming and you’ll find plenty of material using it as a vehicle. Here’s a selection of documents to learn more about Scheme:

You’ll find more books, tutorials and other resources at https://schemers.org/.


Up: Handledningar för Scheme   [Contents][Index]