summaryrefslogtreecommitdiffstats
path: root/test cases/native/6 add language/prog.cc
blob: 03647dde43a99b07860a3dde0f6ad831b99b68cc (plain)
1
2
3
4
5
6
#include<iostream>

int main(int, char**) {
    std::cout << "I am C++.\n";
    return 0;
}