Printing a blank line in Lua -


instead of:

print(); print("hellow!"); 

is there way print blank line before print("hellow!") without having use blank print()?

instead of:

print(); print("hellow!"); 

you can replace empty print() \n before text:

print("\nhellow!") 

Comments

Popular posts from this blog

Java sticky instances of class com.mysql.jdbc.Field aggregating -