--[[ Imperative Core Language (Prefix), REPL Initation H. Conrad Cunningham, Professor Computer and Information Science University of Mississippi 1234567890123456789012345678901234567890123456789012345678901234567890 2016-09-22: Developed from Expression Language 1 script 2016-09-25: Modified to use new startREPL procedure --]] -- Set global module "parameters" to configure system UTILITIES = "utilities" ENVIRONMENT = "environment" PARSER = "parser_prefix_core" -- ImpCore HW 2 ABS_SYNTAX = "abs_syn_core" -- ImpCore HW 2 EVALUATOR = "evaluator_core" -- ImpCore HW 2 VALUES = "values_01" REPL = "repl_core" -- ImpCore -- Import REPL Module local repl = require(REPL) print "Entering Imperative Core Language Prefix Interpreter" repl.startREPL() print "Exiting Imperative Core Language Prefix Interpreter"