Files
Nasal-Interpreter/version2.0/lib/system.nas
Valk Richard Li b8728dd725 update
2020-04-07 01:25:56 -07:00

9 lines
163 B
Plaintext

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