celediel / hello_world
0 likes
0 forks
1 files
Last active
1 | # hello world from OpenGist on burning.moe |
2 | # https://github.com/thomiceli/opengist |
3 | |
4 | |
5 | def unmain(I): |
6 | print("".join(chr(int(I[i * 8 : i * 8 + 8], 2)) for i in range(len(I) // 8))) |
7 | |
8 | |
9 | def main(Is): |
10 | unmain("".join(str(I) for I in Is)) |
Newer
Older