Cpp/helloworld

提供: 初心者エンジニアの簡易メモ
ナビゲーションに移動 検索に移動

hello.cpp

#include <iostream>
using namespace std;

int main()
{
    cout << "hello" << endl;
}
$ c++ hello.cpp
$ ./a.out