The idea behind ReplMaker.jl is to make a tool for building (domain-specific) languages in Julia. Suppose you've invented some language called MyLang and you've implemented a parser that turns MyLang code into Julia code which is then supposed to be executed by the Julia runtime. With ReplMaker.jl, you can simply hook your parser into the package and ReplMaker will then create a REPL mode where end users just type MyLang code and have it executed automatically. My hope is for this to be useful...