This commit is contained in:
Valk Richard Li 2020-09-13 00:28:10 -07:00 committed by GitHub
parent b674618823
commit a00b740ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

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