Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am fnuecke on github.
  • I am fnuecke (https://keybase.io/fnuecke) on keybase.
  • I have a public key whose fingerprint is 8CAD 5DE5 0517 4D2F FF35 907B F8ED 74FB E43A 0800

To claim this, I am signing this object:

@fnuecke
fnuecke / lisp.lua
Created December 30, 2013 14:48
https://code.google.com/p/lualisp/ amalgamated and ported for Lua 5.2 and adjusted to run in OpenComputers (meaning it uses some OpenComputers specific functions)
-- This software is licensed under the M.I.T. license.
-- Author: David Bergman
--
-- This is a Scheme/Lisp interpreter, written in Lua.
-- Adjusted for Lua 5.2 and amalgamated for OpenComputers.
-- Run it without parameters to get into interpreter mode.
-- Alternatively pass it a file name of a lisp script.
local environment = {}