5 lines
88 B
Plaintext
5 lines
88 B
Plaintext
|
from "EMBED" import u8_to_bits;
|
||
|
|
||
|
def main(u8 a) -> bool[8] {
|
||
|
return u8_to_bits(a);
|
||
|
}
|