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
type:func(thing)
{
nasal_call_builtin_scalar_type(thing);
return;
}
};
nasal_call_builtin_system(str);
return;
}
var sleep=func(duration)
{
nasal_call_builtin_sleep(duration);
return;
}