public/subjects/range
xpetit 46f4ddc49e
Simplify prompt, execution of Go programs, fix typos
2021-04-28 11:47:34 +02:00
..
README.md Simplify prompt, execution of Go programs, fix typos 2021-04-28 11:47:34 +02:00

README.md

range

Instructions

Write a program that takes two numbers as arguments and prints the consecutive values that begins at the first number and end at the second number (including the values of those numbers !).

Errors should be handled.

If the number of arguments is different from 2 the program prints nothing.

Usage :

$ go run . 1 3
1 2 3
$ go run . -1 2 | cat -e
-1 0 1 2$
$ go run . 0 0
0
$ go run . 0 nan | cat -e
strconv.Atoi: parsing "nan": invalid syntax$
$