Releases: kostiakoval/SpeedLog
Releases · kostiakoval/SpeedLog
v 0.3.0
Swift 3.0
v 0.2.0
v 0.1.4 - File structure
Code Changes (added, deleted):
- None
Changes:
- Pod file structure. Example project doesn't require to run
pod install
to use it
Justgit clone
or download zip and run it :)
v0.1.3 - Bug fixing
- Fix terminator element in
print
function
v0.1.2 - Swift 2.0 print style
- use Swift 2.0
print
function
print(items: Any..., separator: String = default, terminator: String = default)
SpeedLog.print("A", "B")
SpeedLog.print("A", "B", separator: "-")
SpeedLog.print("A", "B", terminator: "")
SpeedLog.print("A", "B", separator: "-", terminator: "\n\n")