## printbits ### Instructions Write a function that takes a byte, and prints it in binary value **without a newline at the end**. ### Expected function ```go func PrintBits(octe byte) { } ``` ### Usage Example of output: If 2 is passed to the function `PrintBits`, it will print "00000010".