Browse Source

fix of subjects

content-update
Christopher Fremond 5 years ago committed by Christopher Fremond
parent
commit
2cc619787e
  1. 2
      subjects/boolean.en.md
  2. 2
      subjects/boolean.fr.md
  3. 11
      subjects/point.en.md
  4. 18
      subjects/point.fr.md

2
subjects/boolean.en.md

@ -1,4 +1,4 @@
## Boolean
## boolean
### Instructions

2
subjects/boolean.fr.md

@ -1,4 +1,4 @@
## Boolean
## boolean
### Instructions

11
subjects/point.en.md

@ -1,12 +1,17 @@
## Point
## point
### Instructions
Create a `.go` file and copy the code below into our file
and add the code necessary so the program works.
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 `point`.
### Code to be copied
```go
func setPoint(ptr *point) {
ptr.x = 42

18
subjects/point.fr.md

@ -1,10 +1,17 @@
## Point
## point
### Instructions
Create a `.go` file and copy the code below into our file
Créer un fichier `.go`.
- The main task is to return a working program.
- Le code ci-dessous doit être copié dans ce fichier.
- Les changements nécéssaires doivent être appliquer et the code below into that file
and do the necessary changes so that the program works.
- Le programme doit être rendu dans un dossier nommé `boolean`.
### Code à copier
```go
func setPoint(ptr *point) {
@ -17,12 +24,11 @@ func main() {
setPoint(points)
fmt.Printf("x = %d, y = %d",points.x, points.y)
fmt.Println()
fmt.Printf("x = %d, y = %d\n",points.x, points.y)
}
```
### Expected output
### Usage
```console
student@ubuntu:~/piscine/test$ go build

Loading…
Cancel
Save