Guest User

Untitled

a guest
Oct 22nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. func readLines() -> [String] {
  2. var results = [String]()
  3. while(true) {
  4. guard let readLine = readLine() else {
  5. break
  6. }
  7. results.append(readLine)
  8. }
  9. return results
  10. }
Add Comment
Please, Sign In to add comment