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.
 
 
 
 

407 B

rot14

Instructions

Écrire un programme qui retourne la string en paramètre transformée en string rot14..

Utilisation

student@ubuntu:~/rot14prog$ go build
student@ubuntu:~/rot14prog$ ./rot14prog "Hello How are You" | cat -e
Vszzc Vck ofs Mci$
student@ubuntu:~/rot14prog$ ./rot14prog Hello How are You

student@ubuntu:~/rot14prog$ ./rot14prog

student@ubuntu:~/rot14prog$