Lambda

From OLPC
Jump to: navigation, search
Xo-lambda-icon.svg
Xo s.png Current version is alpha.

Activity id is org.artifactual.LambdaActivity

see more templates or propose new

The Lambda activity interface

Lambda activity is a simple Lisp interpreter for the OLPC XO-1.

It features:

  • Integer & Real numeric types
  • Mark & Sweep garbage collection
  • A simple foreign function interface
  • A full screen editor which can freely mix text and graphics
  • Implemented in ~2000 lines of C code
  • Released under a MIT/X11 license


Goal

The goal of the Lambda activity is not to be a full featured, standards compliant, high performance Lisp as there already exists several excellent examples of such systems!

Rather, the Lambda activity attempts to accomplish two highly specialized objectives:

  • Fun - A text based Lisp console may be a barrel-load of fun if all you have is a 300 baud modem and an account on a university mainframe but if you have a bitmapped color display, a video camera, microphone and 16 bit digital audio you have to ask yourself: "Can this thing sing?"
  • Simplicity - There is an enormous difference in complexity between the original single page implementation of Lisp in John McCarthy's 1960 paper and modern implementations. Given the performance improvements computers have seen in the last few years it seems that there is significant educational value to be gotten from a system which, while performant enough to have fun, is still simple enough that it can reveal all of its secrets to the curious student within a reasonable amount of time.

Compilation

Dependencies

TODO

Instructions

 make update
 make all


Lesson 1 - Hello World

  • Enter the following text into the Lambda activity console:
 (print "Hello World")
  • Now, on the same line as the text you entered press the key combination: <ctrl>+<space>
  • Your console should now look as follows:
 (print "Hello World")
 "Hello World"