blob: 77fab68abedad049a06b386ecce5ce7500fe8e50 [file] [log] [blame]
#include <iostream>
#include <zlib.h>
#include "lib/cmMod.hpp"
using namespace std;
int main(void) {
cmModClass obj("Hello (LIB TEST)");
cout << obj.getStr() << " ZLIB: " << zlibVersion() << endl;
return 0;
}