diff --git a/subjects/displayp/README.md b/subjects/displayp/README.md new file mode 100644 index 00000000..5031f898 --- /dev/null +++ b/subjects/displayp/README.md @@ -0,0 +1,19 @@ +## displayp + +### Instructions + +Write a program that displays a character `P` followed by a newline `\n`. + +### Usage + +```console +$ go run . | cat -e +P$ +$ +$ go run . "a" "b" | cat -e +P$ +$ +$ go run . "a" "b" "c" | cat -e +P$ +$ +```