a2985b049d
Run SwiftShellTests/Scripts/runtests.bash to perform all unit tests.
9 lines
141 B
Swift
Executable File
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)
|
|
}
|