Finish 3rd example

This commit is contained in:
Bassem Girgis
2017-09-27 00:55:23 -05:00
parent 82a38a0c1f
commit 799fc1a2b1
13 changed files with 94 additions and 52 deletions

12
execEx/02/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "foo.hpp"
#include <iostream>
int
main()
{
std::cout << "foo = " << foo() << std::endl;
return 0;
}