Files
Nasal-Interpreter/version3.0/lib/system.nas
2020-05-31 10:19:26 -07:00

9 lines
164 B
Plaintext

var system=
{
# print the type of thing on the screen
type:func(thing)
{
nasal_call_builtin_scalar_type(thing);
return;
}
};