summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cxx/test/hello.cc
blob: 2a8586999671203579a96ef897cec9eebdd64326 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <iostream>
using namespace std;

int main()
{
   cout << "Hello world from C++!" << endl;
   cout << "YES!" << endl;
	return (0);
}