From bbf9164565edac51fd502c0905b023ddc45f87cc Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Thu, 19 Aug 2021 12:37:59 +0100 Subject: [PATCH] Update README.md tentative of clarification --- subjects/printprogramname/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/subjects/printprogramname/README.md b/subjects/printprogramname/README.md index 889074cd..d80670c4 100644 --- a/subjects/printprogramname/README.md +++ b/subjects/printprogramname/README.md @@ -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$ ```