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.

16 lines
385 B

## strrevprog
### Instructions
5 years ago
- Écrire un programme qui inverse une `string` et qui l'affiche dans la sortie standard.
### Utilisation :
```console
student@ubuntu:~/[[ROOT]]/strrevprog$ go build
student@ubuntu:~/[[ROOT]]/strrevprog$ ./strrevprog "Hello World!" | cat -e
!dlroW olleH$
student@ubuntu:~/[[ROOT]]/strrevprog$ ./strrevprog
student@ubuntu:~/[[ROOT]]/strrevprog$
```