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 34966f26d6 docs: add readme for printevenarguments subject 2 years ago
..
README.md docs: add readme for printevenarguments subject 2 years ago

README.md

printevenarguments

Instructions

Write a program that receives some arguments from the command line and prints the ones with an even index followed by a new line. If the number of even arguments is 0, print a new line.

Usage

$ go run . first second third | cat -e
second$
$ go run . a b c d| cat -e
b$
d$