#include <iostream>
int main() {
    std::cout << "Hello QuickRef\n";
    return 0;
}

Compiling and running

$ g++ hello.cpp -o hello
$ ./hello
Hello QuickRef
Comments