Files
SwiftShell/SwiftShellTests/Scripts/readfilelinebyline.swift
T
Kare Morstol a2985b049d Add shell unit tests and update test scripts.
Run SwiftShellTests/Scripts/runtests.bash to perform all unit tests.
2014-11-26 20:58:22 +01:00

9 lines
141 B
Swift
Executable File

#!/usr/bin/env swiftshell
import SwiftShell
for line in open("onetwothree.txt").lines() {
// Do something with each line
println(line)
}