Home | History | Annotate | Download | only in strings

Lines Matching defs:rot13

561 func rot13(r rune) rune {
591 // 3. Rot13
592 m = Map(rot13, "a to zed")
595 t.Errorf("rot13: expected %q got %q", expect, m)
598 // 4. Rot13^2
599 m = Map(rot13, Map(rot13, "a to zed"))
602 t.Errorf("rot13: expected %q got %q", expect, m)