X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=5b8d4b8ca6434e8359434085f70aaf8ba18bf20e;hp=e68356462835f8cd038c893a29fb52ba5c3ba98c;hb=e24f0693b4e3989e625448009175c06e1e6e08d4;hpb=5cc867d6c8c7ca9d977e015de12c961f4067ecec diff --git a/src/main.cpp b/src/main.cpp index e683564..5b8d4b8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,14 @@ #include "common.h" +#include "ipdf.h" + +using namespace std; +using namespace IPDF; + int main(int argc, char ** argv) { - Debug("It's alive!"); + Real a = 10; + Real b = 20; + Debug("a*b = %f", RealToFloat(a*b)); return 0; }