15.7k views
2 votes
Declare the variable town as a reference to a string object and initialize it to "any town, USA"

User Adolf
by
7.7k points

1 Answer

6 votes

Using Lua:

print("Town")

local town = io.read()

print(town .. ", USA")

Not sure if this is what you needed. Let me know if it is.

User Masterfego
by
7.4k points