import UIKit
var str = "Hello, playground"
let NumberofStopLights: Int = 4
var population: Int
population = 5000
let TownName = "HappyPlace"
let TownDescription = return "/(TownName) has a population of /(population) and /(numberofStopLights) Stop Lights
print (TownDescription)
I want to have the integers automatically go into the /(TownName), /(population) and /(numberStopLights) spaces, tried using the return function but it did not work. SO..... I tried doing this based off another post on Stack Overflow, which said to put return right in front of it but that did not work, so... what next? (Code above)