forked from xxq250/Nasal-Interpreter
9 lines
164 B
Plaintext
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;
|
|
}
|
|
}; |