mirror of
https://github.com/criyle/go-sandbox.git
synced 2025-09-26 23:19:11 +08:00
7 lines
95 B
C++
7 lines
95 B
C++
#include<iostream>
|
|
|
|
int main() {
|
|
std::cout << "Hello, world" << std::endl;
|
|
return 0;
|
|
}
|