summaryrefslogtreecommitdiff
path: root/examples/hello_cxxlib/cxxapp/cxxapp.cc
blob: 0284107c416a941a740b5132ee15dc23caebc2db (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

#include "hello_msg.h"

int main (int argc, char **)
{
	hello_msg1 ();
	std::cout << hello_msg2 () << '\n';

	return 0;
}