Home | History | Annotate | Download | only in strings

Lines Matching refs:rot13

573 func rot13(r rune) rune {
603 // 3. Rot13
604 m = Map(rot13, "a to zed")
607 t.Errorf("rot13: expected %q got %q", expect, m)
610 // 4. Rot13^2
611 m = Map(rot13, Map(rot13, "a to zed"))
614 t.Errorf("rot13: expected %q got %q", expect, m)