Home | History | Annotate | Download | only in bytes

Lines Matching full:rot13

828 func rot13(r rune) rune {
859 // 3. Rot13
860 m = Map(rot13, []byte("a to zed"))
863 t.Errorf("rot13: expected %q got %q", expect, m)
866 // 4. Rot13^2
867 m = Map(rot13, Map(rot13, []byte("a to zed")))
870 t.Errorf("rot13: expected %q got %q", expect, m)