Archived
1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
it-works/binary_output/main.cpp
2011-05-22 16:57:05 +02:00

9 lines
188 B
C++

#include <iostream>
#include "binary_output.hpp"
int main() {
std::cout << make_binary(1684234849) << std::endl;
std::cout << make_binary("A c-style array") << std::endl;
return 0;
}