Hello, world!(C++)

次はC++版・・・。

出力演算子"<<"でstd::coutに出力・・・。

$ vi helloworld.cpp
$ g++ helloworld.cpp -o helloworld
$ ./helloworld
Hello, world!
$

こんな感じ・・・。

Test/helloworld.cpp at master · bg1bgst333/Test · GitHub