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.

20 lines
304 B

## printbits
### Instructions
Écrire une fonction qui prend un `byte`, et qui l'affiche en valeur binaire **sans newline à la fin**.
### Fonction attendue
```go
func PrintBits(octe byte) {
}
```
### Usage
Exemple d'output:
Si 2 est passé à la fonction `PrintBits`, elle affichera "00000010".