Skip to content

Instantly share code, notes, and snippets.

@afmika
Created May 21, 2024 20:33
Show Gist options
  • Save afmika/a5a0937447a1c309c2a35cc358e8c78c to your computer and use it in GitHub Desktop.
Save afmika/a5a0937447a1c309c2a35cc358e8c78c to your computer and use it in GitHub Desktop.
Among Us
#include <stdio.h>
int main() {
int r = 4;
while (r--) {
for (int o = 7; o >= 0; putchar(" #"[(((0x7cf5 >> 0x4*r) & 0xf) >> o-- & 1)]));
putchar('\n');
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment