Modified version of Micromium Beta, includes a new help page, compiling tool for M+, and a compiled ML Code interpreter. Hold T while booting to enter a terminal. Type 'compiler' to start the M+ compiler. Example M+ code(compile it first): ; console.clr; console.add("sample text"); console.ask; console.add(ask); jump 3; You should get: ;c ;p ;sample text ;g ;p ;/ ;ask ;j ;4 The compiler has nice and user friendly error checking to help you find bugs easily. Then, restart and put the compiled code into MinInjector aka the ask box. More sample code to compile: ; console.add("Echo"); console.add("Echo"); console.add("echo"); console.add("echo"); console.add("e c h o"); console.add("e c h o"); console.add("e c h o"); console.add("..."); console.add("Type a word to have it echo"); console.ask; console.add(ask); console.add(ask); console.add(ask); console.add(ask); console.add("..."); jump 9; ; console.clr; console.add("bruh"); console.add("get bruh'd"); jump 2;