public/subjects/displayp
jotapero 189ad964c3 docs(displayP): created new subject
- subject for this exercise was missing

docs(displayP): fix name

- fixed folder name / exercise name

docs(displayP): removed wrong folder

docs(displayP): fix subject grammar

- fixed grammar

docs(displayp): ran prettier format
2022-12-05 17:18:31 +00:00
..
README.md docs(displayP): created new subject 2022-12-05 17:18:31 +00:00

README.md

displayp

Instructions

Write a program that displays a character P followed by a newline \n.

Usage

$ go run . | cat -e
P$
$
$ go run . "a" "b" | cat -e
P$
$
$ go run . "a" "b" "c" | cat -e
P$
$