You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
estlop 8d36aa1317 Add more examples of tests as per review 2 years ago
..
README.md Add more examples of tests as per review 2 years ago

README.md

canyoucount

Instructions

Your program will receive some arguments. Count how many characters they have in total and print them. If the number of arguments is not enough, print 0.

Usage

$ go run . "hello" "how are you?" | cat -e
17$
$ go run . "a" | cat -e
1$
$ go run . "I am" "myself." | cat -e
11$
$ go run . | cat -e
0$