Throwing, Parsing, and Naming
Pre-release
Pre-release
- Card.CardFace is now Card.Face
- All get*() now return throws -> *
- parse* now is parseResource
- ResultType handles whether a call failed or succeeded.
- print() now works on all types
- simplePrint() doesn't exist
do {
let card = try Swiftfall.getRandomCard()
print(card)
} catch {
...
}