diff --git a/version3.0/lib/system.nas b/version3.0/lib/system.nas index 9816478..72c7a5a 100644 --- a/version3.0/lib/system.nas +++ b/version3.0/lib/system.nas @@ -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; - } -}; \ No newline at end of file + nasal_call_builtin_system(str); + return; +} +var sleep=func(duration) +{ + nasal_call_builtin_sleep(duration); + return; +} \ No newline at end of file