Files
Nasal-Interpreter/version2.0/lib/system.nas
Valk Richard Li 4946685da2 update
2020-05-11 01:40:44 -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;
}
};