diff --git a/var_lab.cpp b/var_lab.cpp deleted file mode 100644 index 2e33096..0000000 --- a/var_lab.cpp +++ /dev/null @@ -1,153 +0,0 @@ -#include -#include "nasal.h" -using namespace nasal; -using namespace std; - -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<