infinite prompt and reading of feedback in swift
while true { print("Obl>", terminator: " ") let theInput = readLine() var newstr = "" for elem in (theInput?.characters)! { newstr += String(elem) } print(newstr) }