diff --git a/subjects/cat.en.md b/subjects/cat.en.md index 496c55c6..814576e0 100644 --- a/subjects/cat.en.md +++ b/subjects/cat.en.md @@ -20,7 +20,7 @@ Write a program that has the same behaviour as the system's `cat` command-line. - In case of error the program should print the error. -- The program must be submitted inside a folder with the name `cat`. +- The program must be submitted inside a folder named `cat`. ```console student@ubuntu:~/student/cat$ go build diff --git a/subjects/cat.fr.md b/subjects/cat.fr.md index b234565c..96356580 100644 --- a/subjects/cat.fr.md +++ b/subjects/cat.fr.md @@ -20,16 +20,18 @@ - En cas d'erreur le programme doit imprimer l'erreur. +- L eprogramme doit ĂȘtre rendu dans un dossier nommĂ© `cat`. + ### Utilisation: ```console -student@ubuntu:~/student/test$ go build -student@ubuntu:~/student/test$ ./test +student@ubuntu:~/student/cat$ go build +student@ubuntu:~/student/cat$ ./cat Hello Hello -student@ubuntu:~/student/test$ ./test quest8.txt +student@ubuntu:~/student/cat$ ./cat quest8.txt "Programming is a skill best acquired by pratice and example rather than from books" by Alan Turing -student@ubuntu:~/student/test$ ./test quest8.txt quest8T.txt +student@ubuntu:~/student/cat$ ./cat quest8.txt quest8T.txt "Programming is a skill best acquired by pratice and example rather than from books" by Alan Turing "Alan Mathison Turing was an English mathematician, computer scientist, logician, cryptanalyst. Turing was highly influential in the development of theoretical computer science, providing a formalisation of the concepts of algorithm and computation with the Turing machine, which can be considered a model of a general-purpose computer. Turing is widely considered to be the father of theoretical computer science and artificial intelligence."