Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
flashjaysan committed Apr 17, 2022
1 parent 3a9419d commit 4121fd1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
15 changes: 15 additions & 0 deletions jeux-videos/memo-blitzmax.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,12 @@ Print(message) ' affiche "Hello, World"
Local lettre:Chr = Chr(chaine[N])
```

Utilisez la fonction Bin pour convertir un nombre en une chaine sous sa forme binaire.

```
Print(Bin(nombre))
```

### Caster une valeur

```
Expand Down Expand Up @@ -623,6 +629,15 @@ Function NomFonction:NomType(parametre1: NomType, parametre2: NomType = valeur,
End Function
```

Vous pouvez également passer des paramètres par référence pour modifier leur valeur.

```
Function NomFunction:NomType(parametre1:NomType Var, ...)
...
parametre1 = valeur
End Function
```

### Appeler une fonction

```
Expand Down
1 change: 0 additions & 1 deletion langages/memo-wildfly.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,4 +536,3 @@ public class MonServiceA implements MonServiceRemoteA {

}
```

0 comments on commit 4121fd1

Please sign in to comment.