You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Chris 17d7d56542 Grammatical improvement for rot13 subject 3 years ago
..
README.md Grammatical improvement for rot13 subject 3 years ago

README.md

rot13

Instructions

Write a program that takes a string and displays it, replacing each of its letters by the letter 13 spots ahead in alphabetical order.

  • 'z' becomes 'm' and 'Z' becomes 'M'. The case of the letter stays the same.

  • The output will be followed by a newline ('\n').

  • If the number of arguments is different from 1, the program displays nothing.

Usage

$ go run . "abc"
nop
$ go run . "hello there"
uryyb gurer
$ go run . "HELLO, HELP"
URYYB, URYC
$ go run .
$