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 works
Output:
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 works
Output:
Hello World!
Printuf
Outputs the string given as argument with a "uf " at the beginning
printuf("Hello World!");
printuf "Hello World!"; // This also works
Output:
uf Hello World!
Last updated