&tag(Swift/Tips);
#if DEBUG
print("debug")
#elseif DEBUG2
print("debug2")
#else
print("else")
#endif
print("abc", terminator: "")
Swift.print("abc")
do {
try ObjC.catchException {
let age = aDecoder.decodeInteger(forKey: "firstName")
}
} catch {
print(error.localizedDescription)
}