fix of subjects

This commit is contained in:
Christopher Fremond 2019-06-17 19:25:26 +01:00 committed by Christopher Fremond
parent a5adc906b1
commit 2cc619787e
4 changed files with 22 additions and 11 deletions

View File

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

View File

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

View File

@ -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

View File

@ -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