mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-23 11:28:45 +08:00
7 lines
191 B
Plaintext
7 lines
191 B
Plaintext
|
|
# the function print is written by Cpp: std::cout
|
|
# so the code is fake XD but the definition is of great use
|
|
var print=func(args...)
|
|
{
|
|
return __call_cpp_ostream_std_cout(args);
|
|
}; |