Posted 17 December 2019 - 05:28 AM
ok so say i have this:
This is the result i get:
Note how line 3 of output was empty and line 2 was not printed fully.
Can anyone tell me why is this?
local foo="foo"
local bar="bar"
function printString(string) --this is only an example as one of my functions has this same concept.
print(string)
end
print(foo," ",bar)
printString("foo ",bar)
printString(foo," ",bar)
This is the result i get:
foo bar
foo
Note how line 3 of output was empty and line 2 was not printed fully.
Can anyone tell me why is this?
Edited on 17 December 2019 - 04:30 AM