Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 315 Bytes

File metadata and controls

16 lines (12 loc) · 315 Bytes

hi, this is a lua5.1 bytecode parser i've made.. usage is

byte[] file = File.ReadAllBytes(path);
Parser.parser(file);

or if u wanna use the cli u can do

dotnet run input.luac
var path = args.Length > 0 ? args[0] : "input.luac"; // change the luac file to whatever u like