forked from xxq250/Nasal-Interpreter
6 lines
133 B
Plaintext
6 lines
133 B
Plaintext
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); |