mirror of https://github.com/01-edu/public.git
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.
20 lines
393 B
20 lines
393 B
2 years ago
|
## arg-rot1
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Write a program that rotates the arguments in the command line by 1 position.
|
||
|
- If the number of arguments is less than 2, print (`'\n'`).
|
||
|
- Print (`'\n'`) at the end of the output.
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
```console
|
||
|
$ go run . | cat -e
|
||
|
$
|
||
|
$ go run . 1 2 3 4 5 6 7 8 9 | cat -e
|
||
|
2 3 4 5 6 7 8 9 1$
|
||
|
$ go run "Hello" "World" | cat -e
|
||
|
World Hello$
|
||
|
$ go run . a b c d
|
||
|
b c d a$
|
||
|
```
|