Skip to content

Instantly share code, notes, and snippets.

@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 = {}