rdaum/moor

Handle PREFIX/SUFFIX/OUTPUTPREFIX/OUTPUTSUFFIX in telnet host

Opened this issue · 2 comments

// TODO: Handle built-in commands like .program, .flush, etc.

    ]
    .contains(&verb.as_str())
    {
        // TODO: Handle built-in commands like .program, .flush, etc.
        return Err(ParseCommandError::UnimplementedBuiltInCommand);
    }
    // Split into verb and argument string

.program has been added to the telnet host.

.flush makes no sense in our world.

PREFIX/SUFFIX not implemented yet, so I'll change this ticket to be just that.