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

10 lines
188 B
C++
Raw Permalink Normal View History

2011-05-22 16:52:37 +02:00
#include <iostream>
#include "binary_output.hpp"
2011-05-22 16:57:05 +02:00
int main() {
2011-05-22 16:52:37 +02:00
std::cout << make_binary(1684234849) << std::endl;
std::cout << make_binary("A c-style array") << std::endl;
2011-05-22 16:57:05 +02:00
return 0;
2011-05-22 16:52:37 +02:00
}