mirror of https://github.com/01-edu/public.git
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.
19 lines
394 B
19 lines
394 B
5 years ago
|
## rot14
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Write a program that prints the `string` passed as argument, transformed into a `rot14 string`.
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/rot14prog$ go build
|
||
|
student@ubuntu:~/rot14prog$ ./rot14prog "Hello How are You"
|
||
|
Vszzc Vck ofs Mci
|
||
|
student@ubuntu:~/rot14prog$ ./rot14prog Hello How are You
|
||
|
|
||
|
student@ubuntu:~/rot14prog$ ./rot14prog
|
||
|
|
||
|
student@ubuntu:~/rot14prog$
|
||
|
```
|