|
|
|
## Fix the Main
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Fix the following program.
|
|
|
|
|
|
|
|
### Program to fix
|
|
|
|
|
|
|
|
```go
|
|
|
|
package piscine
|
|
|
|
|
|
|
|
func PrintStr(s string) {
|
|
|
|
for _, r := range s {
|
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
|
|
|
z01.PrintRune(r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func CloseDoor(ptrDoor *Door) bool {
|
|
|
|
PrintStr("Door Closing...")
|
|
|
|
state = CLOSE
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsDoorOpen(Door Door) {
|
|
|
|
PrintStr("is the Door opened ?")
|
|
|
|
return Door.state = OPEN
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsDoorClose(ptrDoor *Door) bool {
|
|
|
|
PrintStr("is the Door closed ?")
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
door := &Door{}
|
|
|
|
|
|
|
|
OpenDoor(door)
|
|
|
|
if IsDoorClose(door) {
|
|
|
|
OpenDoor(door)
|
|
|
|
}
|
|
|
|
if IsDoorOpen(door) {
|
|
|
|
CloseDoor(door)
|
|
|
|
}
|
|
|
|
if door.state == OPEN {
|
|
|
|
CloseDoor(door)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|