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.
Clement Denis
26b3a37cc0
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
Fix the Main
Instructions
Fix the following program.
Program to fix
package piscine
func PrintStr(s string) {
for _, r := range s {
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)
}
}