mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-22 19:08:43 +08:00
9 lines
163 B
Plaintext
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;
|
|
}
|
|
}; |