birdbadge/main.cpp

7 lines
118 B
C++
Raw Normal View History

2023-04-11 22:05:33 +00:00
#include <iostream>
int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}