Browse Source

subject(swapargs):add readme

DEV-3241-DEV-3242-corewar
hamza 2 years ago committed by Dav Hojt
parent
commit
9f0ee07524
  1. 18
      subjects/swapargs/README.md

18
subjects/swapargs/README.md

@ -0,0 +1,18 @@
## swap-args
### Instructions
Write a program that takes two arguments and swaps them
- If the arguments are not 2 print (`'\n'`).
- Separate the arguments with (`' '`)
- Print (`'\n'`) at the end of the output.
### Example
```console
$ go run . | cat -e
$
$ go run . 1 2 | cat -e
2 1$
$ go run . "World" "Hello" | cat -e
Hello! World$
```
Loading…
Cancel
Save