summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/stdmodules_cpp_only/src/main.cpp
blob: b4a8e6c26b280355cb08eb17d7bd5d903e918fa5 (plain)
1
2
3
4
5
6
7
8
import std;

using namespace std;

int main(int argc, char **argv) {
    cout << "hello world!" << endl;
    return 0;
}