summaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: 8bb47f1c1b02c1333b11c040127518de63192315 (plain)
1
2
3
4
5
6
#include <iostream>

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