#include"db.h" #include"net.h" #include<iostream> using namespace foo; int main(int argc, char **argv) { DB db; Net net; cout << "Server version: " VERSION " built on " JAMDATE "\n"; #ifdef FOO cout << " FOO was set.\n"; #endif // FOO #if VERSION_MAJ >= 2 cout << " Version major was >= 2. " "(it was " << VERSION_MAJ << ")\n"; #endif cout << " Version major: " << VERSION_MAJ << "\n"; cout << " Version minor: " << VERSION_MIN << "\n"; db.doStuff(); net.doStuff(); exit(0); }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 4438 | Chris Comparini |
Sample jam projects. "rootless" documentation still needs work. |