Cpp/helloworld
提供: 初心者エンジニアの簡易メモ
hello.cpp
#include <iostream> using namespace std; int main() { cout << "hello" << endl; }
$ c++ hello.cpp $ ./a.out
hello.cpp
#include <iostream> using namespace std; int main() { cout << "hello" << endl; }
$ c++ hello.cpp $ ./a.out
|