public/subjects/displayp/README.md

227 B

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$
$