#include #include "var.h" using namespace nasal; int main() { PrintString("This is a testing programme. \n"); NasalHash m; int a=1; std::string k="hello world!"; PrintString(k); m.Append("first",&a,"int"); m.Append("second",&a,"int"); m.Append("third",&k,"string"); m.PrintHash(); std::cout<