fixes, command for sm parser, basic sm printer

This commit is contained in:
ProgramSnail 2025-05-24 17:53:32 +03:00
parent 6c19722d9e
commit 66ccf639c8
4 changed files with 123 additions and 3 deletions

View file

@ -240,3 +240,5 @@ struct SMInstr {
std::vector<SMInstr> parse_sm(std::istream &in);
std::optional<SMInstr> parse_sm(const std::string &line);
std::string print_sm(const SMInstr &instr);