Browse Source

fix2

content-update
Christopher Fremond 5 years ago
parent
commit
92cdcb898f
  1. 11
      subjects/collatzcountdown.en.md
  2. 4
      subjects/collatzcountdown.fr.md

11
subjects/collatzcountdown.en.md

@ -21,11 +21,11 @@ package main
import ( import (
"fmt" "fmt"
student ".." piscine ".."
) )
func main() { func main() {
steps := student.CollatzCountdown(12) steps := piscine.CollatzCountdown(12)
fmt.Println(steps) fmt.Println(steps)
} }
``` ```
@ -33,8 +33,15 @@ func main() {
And its output : And its output :
```console ```console
<<<<<<< HEAD
student@ubuntu:~/student/test$ go build student@ubuntu:~/student/test$ go build
student@ubuntu:~/student/test$ ./test student@ubuntu:~/student/test$ ./test
10 10
student@ubuntu:~/student/test$ student@ubuntu:~/student/test$
=======
student@ubuntu:~/piscine/test$ go build
student@ubuntu:~/piscine/test$ ./test
10
student@ubuntu:~/piscine/test$
>>>>>>> 3fe258c999f5918c6b750a6cbe511a7874883d25
``` ```

4
subjects/collatzcountdown.fr.md

@ -21,11 +21,11 @@ package main
import ( import (
"fmt" "fmt"
student ".." piscine ".."
) )
func main() { func main() {
steps := student.CollatzCountdown(12) steps := piscine.CollatzCountdown(12)
fmt.Println(steps) fmt.Println(steps)
} }
``` ```

Loading…
Cancel
Save