stories/main.cpp

7 lines
118 B
C++
Raw Normal View History

2022-04-18 20:19:56 +00:00
#include <iostream>
int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}