From 1d0cf358fcaf4ad17ba8ea65066cf9f85f1a8c90 Mon Sep 17 00:00:00 2001 From: estlop Date: Fri, 24 Jun 2022 12:34:11 +0100 Subject: [PATCH] docs: Add readme for canyoucount subject #1258 --- subjects/canyoucount/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 subjects/canyoucount/README.md diff --git a/subjects/canyoucount/README.md b/subjects/canyoucount/README.md new file mode 100644 index 00000000..dbc1962e --- /dev/null +++ b/subjects/canyoucount/README.md @@ -0,0 +1,12 @@ +## canyoucount + +### Instructions + +Your program will receive some arguments. Count how many characters they have in total and print them. + +### Usage + +```console +$ go run . "hello" "how are you?" | cat -e +17 $ +```