This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 = {} |
NewerOlder