about summary refs log tree commit diff
path: root/pkgs/by-name/he/hello-cpp/src/main.cpp
blob: 5c887e112046f641a22302d425cf2d2be9c1e0dc (plain) (blame)
1
2
3
4
5
6
#include <iostream>

int main(int argc, char *argv[]) {
    std::cout << "Hello, C++\n";
    return 0;
}