--[[ Initiator Program for Expression Language 1 REPL (Infix) H. Conrad Cunningham, Professor Computer and Information Science University of Mississippi 1234567890123456789012345678901234567890123456789012345678901234567890 2016_09-21: Developed prototype 2016-09-22: Corrected typo --]] -- Set module "parameters" UTILITIES = "utilities" ENVIRONMENT = "environment" PARSER = "parser_infix_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 Infix Interpreter" repl.readEvalPrint() print "Exiting Expression Language 1 Interpreter"