go-sandbox/test_c/helloworld/main.cpp
2024-12-05 14:56:57 -05:00

7 lines
95 B
C++

#include<iostream>
int main() {
std::cout << "Hello, world" << std::endl;
return 0;
}