55c96103ac
Added one test script and a unit test file for running them. Disabled deployment of framework on release build because it gets removed again as soon as I do a clean build.
10 lines
108 B
Swift
10 lines
108 B
Swift
|
|
import SwiftShell
|
|
|
|
var i = 1
|
|
for line in standardinput.lines() {
|
|
print("line \(i++): ")
|
|
println(line)
|
|
}
|
|
|