22 posts
Posted 08 November 2012 - 07:41 PM
is it just me or do no Concatenate strings work?
56 posts
Location
Victoria, AUS
Posted 08 November 2012 - 07:45 PM
Can you please explain on how you're trying to concatenate the strings?
22 posts
Posted 08 November 2012 - 07:59 PM
local x = Hello
local z = Mate
print("x.." "..z")
thats how ive been trying
22 posts
Posted 08 November 2012 - 08:01 PM
also, if your helping can you tell me how i can make my password show up as * instead of letters,
56 posts
Location
Victoria, AUS
Posted 08 November 2012 - 08:02 PM
Here is your fixed code:
local x = "Hello"
local z = "Mate"
print(x .. z)
For input in read to show as stars, use read("*").
Also, please use code-tags: The <> next to the picture button in the editor.
22 posts
Posted 08 November 2012 - 08:31 PM
thanks, i owe u one :P/>/>