C++ソースの更新

This commit is contained in:
ry.yamafuji 2025-12-07 19:14:05 +09:00
parent 8802b4fa27
commit ab1e6707e2

10
src/cpp/hello.cpp Normal file
View File

@ -0,0 +1,10 @@
// hello.cpp
// Hello world program in C++
// command: g++ src/cpp/hello.cpp -o dist/hello
// run: ./dist/hello
#include <iostream>
int main() {
std::cout << "Hello, world!" << std::endl;
return 0;
}