summaryrefslogtreecommitdiff
path: root/hello.cpp
blob: 3b39d2abb90dd5e26ecd0a44d439f81b91d6569a (plain)
1
2
3
4
5
6
#include <iostream>

int main() {
    std::cout << "hello user" << std::endl;
    return 0;
}