Cpp/helloworld
提供: 初心者エンジニアの簡易メモ
2019年3月26日 (火) 10:29時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「hello.cpp <pre> #include <iostream> using namespace std; int main() { cout << "hello" << endl; } </pre> $ c++ hello.cpp $ ./a.out」)
hello.cpp
#include <iostream> using namespace std; int main() { cout << "hello" << endl; }
$ c++ hello.cpp $ ./a.out