--[[ Initiator Program for Expression Language 1 REPL (Prefix) H. Conrad Cunningham, Professor Computer and Information Science University of Mississippi 1234567890123456789012345678901234567890123456789012345678901234567890 2016_09-21: Developed prototype 2016-09-22: Corrected typo --]] -- Set global module "parameters" UTILITIES = "utilities" ENVIRONMENT = "environment" PARSER = "parser_prefix_01" ABS_SYNTAX = "abs_syn_01" EVALUATOR = "evaluator_01" VALUES = "values_01" REPL = "repl" -- Import REPL Module local repl = require(REPL) print "Entering Expression Language 1 Prefix Interpreter" repl.readEvalPrint() print "Exiting Expression Language 1 Interpreter"