Files
Nasal-Interpreter/balloon/lib/io.nas
T
Valk Richard Li b030c42b0b Add print
2019-11-19 22:54:26 +08:00

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);
};