master
/ miniconda3 / pkgs / libgcc-ng-11.2.0-h1234567_1 / info / recipe / parent / hello-world.cpp

hello-world.cpp @a663dc1 raw · history · blame

1
2
3
4
5
6
7
#include <iostream>

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