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
Post a Comment