Browse Source

formatted

pull/72/head
Christopher Fremond 5 years ago committed by Frenchris
parent
commit
f57ae92ab5
  1. 19
      subjects/printbits.md

19
subjects/printbits.md

@ -1,18 +1,19 @@
# printbits ## printbits
## Instructions
Write a function that takes a byte, and prints it in binary WITHOUT A NEWLINE ### Instructions
AT THE END.
The function must have the next signature. Write a function that takes a byte, and prints it in binary value **without a newline at the end**.
## Expected function ### Expected function
```go ```go
func PrintBits(octe byte) { func PrintBits(octe byte) {
} }
``` ```
Example, if you pass 2 to PrintBits, it will print "00000010"
### Usage
Example of output:
If 2 is passed to the function PrintBits, it will print "00000010".

Loading…
Cancel
Save