Skip to content

Instantly share code, notes, and snippets.

@cobodo
Created November 11, 2013 08:47
Show Gist options
  • Save cobodo/7409963 to your computer and use it in GitHub Desktop.
Save cobodo/7409963 to your computer and use it in GitHub Desktop.
#include <iostream>
int main () {
char mes[] = {
0b01001001, 0b01101110,
0b01110100, 0b01100101,
0b01101100, 0b00100000,
0b01001000, 0b01100101,
0b01100001, 0b01110010,
0b01110100, 0b01110011,
0b00100000, 0b01011001,
0b01101111, 0b01110101,
0x00
};
std::cout << mes << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment