├── .gitignore ├── LICENSE.md ├── Makefile ├── Package.swift ├── README.md └── Sources └── sentences ├── FileHandle+TextOutputStream.swift ├── enumerateSentences.swift └── main.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | .swiftpm 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flight-School/sentences/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flight-School/sentences/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flight-School/sentences/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flight-School/sentences/HEAD/README.md -------------------------------------------------------------------------------- /Sources/sentences/FileHandle+TextOutputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flight-School/sentences/HEAD/Sources/sentences/FileHandle+TextOutputStream.swift -------------------------------------------------------------------------------- /Sources/sentences/enumerateSentences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flight-School/sentences/HEAD/Sources/sentences/enumerateSentences.swift -------------------------------------------------------------------------------- /Sources/sentences/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flight-School/sentences/HEAD/Sources/sentences/main.swift --------------------------------------------------------------------------------