class String def rot13 self.tr("A-Ma-mN-Zn-z","N-Zn-zA-Ma-m") endendjoke = "Y2K bug"joke13 = joke.rot13 # "L2X oht"