// Log 輸出func printLog(_ message: T,
file: String = #file,
method: String = #function,
line: Int = #line){
#if DEBUG
print("\((file as NSString).lastPathComponent)[\(line)], \(method):? \(message)")
#endif
}
printLog("這是一條輸出")? // playground764.swift[235], __lldb_expr_764:? 這是一條輸出