|
|
|
## boolean
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Create a `.go` file.
|
|
|
|
|
|
|
|
- The code below has to be copied in that file.
|
|
|
|
|
|
|
|
- The necessary changes have to be applied so that the program works.
|
|
|
|
|
|
|
|
- The program must be submitted inside a folder with the name `boolean`.
|
|
|
|
|
|
|
|
### Code to be copied
|
|
|
|
|
|
|
|
```go
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
func printStr(s string) {
|
|
|
|
for _, r := range s {
|
|
|
|
z01.PrintRune(r)
|
|
|
|
}
|
|
|
|
z01.PrintRune('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
func isEven(nbr int) boolean {
|
|
|
|
if even(nbr) == 1 {
|
|
|
|
return yes
|
|
|
|
} else {
|
|
|
|
return no
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
if isEven(lengthOfArg) == 1 {
|
|
|
|
printStr(EvenMsg)
|
|
|
|
} else {
|
|
|
|
printStr(OddMsg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/[[ROOT]]/boolean$ go build
|
|
|
|
student@ubuntu:~/[[ROOT]]/boolean$ ./boolean "not" "odd"
|
|
|
|
I have an even number of arguments
|
|
|
|
student@ubuntu:~/[[ROOT]]/boolean$ ./boolean "not even"
|
|
|
|
I have an odd number of arguments
|
|
|
|
```
|