optimize code & replace all printf with std::cout.

This commit is contained in:
ValKmjolnir
2022-07-09 23:36:14 +08:00
parent 2ed20f6362
commit bcdc55a652
7 changed files with 172 additions and 174 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# lib.nas
# print is used to print all things in nasal, try and see how it works.
# this function uses std::cout/printf to output logs.
# this function uses std::cout to output logs.
var print=func(elems...){
return __print(elems);
}