implemented rot13 with 'g?'

This commit is contained in:
2025-05-31 01:52:27 -04:00
parent 238e1540fe
commit ff05dd0e3b
3 changed files with 97 additions and 16 deletions

View File

@@ -171,6 +171,7 @@ pub enum Verb {
Dedent,
Equalize,
AcceptLine,
Rot13, // lol
Builder(VerbBuilder),
EndOfFile
}
@@ -229,6 +230,7 @@ impl Verb {
Self::InsertChar(_) |
Self::Insert(_) |
Self::Breakline(_) |
Self::Rot13 |
Self::EndOfFile
)
}