From fdbc95a83911d85bda20e7922fd492af1be4b124 Mon Sep 17 00:00:00 2001 From: Valk Richard Li <48872266+ValKmjolnir@users.noreply.github.com> Date: Mon, 5 Aug 2019 23:15:24 +0800 Subject: [PATCH] Delete var_lab.cpp --- var_lab.cpp | 153 ---------------------------------------------------- 1 file changed, 153 deletions(-) delete mode 100644 var_lab.cpp 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<