Update README.md

tentative of clarification
This commit is contained in:
Christopher Fremond 2021-08-19 12:37:59 +01:00 committed by GitHub
parent 2e3a5a5974
commit bbf9164565
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -7,14 +7,14 @@ Write a **program** that prints the name of the program.
Example of output :
```console
$ go build main.go
$ ./main
student/piscine/printprogramname$ go build main.go
student/piscine/printprogramnane$ ./main
main
$ go build
$ ./printprogramname | cat -e
student/piscine/printprogramname$ go build
student/piscine/printprogramname$ ./printprogramname | cat -e
printprogramname$
$ go build -o Nessy
$ ./Nessy
student/piscine/printprogramname$ go build -o Nessy
student/piscine/printprogramname$ ./Nessy
Nessy
$
student/piscine/printprogramname$
```