Skip to content

Instantly share code, notes, and snippets.

@ezura
Created February 13, 2016 12:07
Show Gist options
  • Save ezura/74fcf7c13c7c7d63f2ff to your computer and use it in GitHub Desktop.
Save ezura/74fcf7c13c7c7d63f2ff to your computer and use it in GitHub Desktop.
こっちの方が良い例かも(・ω・)? #CodePiece #chocoswift
func myDebugPrint(@autoclosure item: () -> String) {
#if DEBUG
print(item())
#endif
}
class Sample {
func hoge() -> String {
// 重い処理
return "aaaa"
}
}
let sample = Sample()
myDebugPrint(sample.hoge())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment