Home | History | Annotate | Download | only in bytes

Lines Matching refs:rot13

982 func rot13(r rune) rune {
1013 // 3. Rot13
1014 m = Map(rot13, []byte("a to zed"))
1017 t.Errorf("rot13: expected %q got %q", expect, m)
1020 // 4. Rot13^2
1021 m = Map(rot13, Map(rot13, []byte("a to zed")))
1024 t.Errorf("rot13: expected %q got %q", expect, m)