public/subjects/sortparams/README.md

21 lines
206 B
Markdown
Raw Permalink Normal View History

2019-04-24 17:17:07 +00:00
## sortparams
2019-04-24 17:06:54 +00:00
2019-04-24 17:17:07 +00:00
### Instructions
2019-04-24 17:06:54 +00:00
Write a **program** that prints the arguments received in the command line in ASCII order.
Example of output :
```console
$ go run . 1 a 2 A 3 b 4 C
2019-04-24 17:06:54 +00:00
1
2
3
4
A
C
a
b
$
2019-04-24 17:06:54 +00:00
```