This commit is contained in:
Valk Richard Li
2020-09-13 00:28:10 -07:00
committed by GitHub
parent 5d0290e8d3
commit 12f096f5fe
+9 -8
View File
@@ -1,9 +1,10 @@
var system= var system=func(str)
{ {
# print the type of thing on the screen nasal_call_builtin_system(str);
type:func(thing) return;
{ }
nasal_call_builtin_scalar_type(thing); var sleep=func(duration)
return; {
} nasal_call_builtin_sleep(duration);
}; return;
}