Add test file

This commit is contained in:
Valk Richard Li
2019-10-19 10:46:57 +08:00
committed by GitHub
parent e37d42a856
commit 5b67e8064a
6 changed files with 205 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
print("hello world!\n");
print("This is the first program for nasal--\n");
var cnt=0;
for(var i=1;i<101;i+=1)
cnt+=i;
print(cnt);