Prints
Different types of prints in ufLang
Print
The basic print function outputs the string given as argument:
print("Hello World!");print "Hello World!"; // This also worksOutput:
Hello World!Println
Outputs the string given as argument with a new line at the line at the end.
println("Hello World!");println "Hello World!"; // This also worksOutput:
Hello World!
Printuf
Outputs the string given as argument with a "uf " at the beginning
printuf("Hello World!");printuf "Hello World!"; // This also worksOutput:
uf Hello World!Last updated