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

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -