Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active November 16, 2015 22:16
Show Gist options
  • Save KentarouKanno/d9b2ff6d24d79889d40a to your computer and use it in GitHub Desktop.
Save KentarouKanno/d9b2ff6d24d79889d40a to your computer and use it in GitHub Desktop.
Literal Expression
// 現在のファイル名
__FILE__
//=> /Users/******/Desktop/Swift_Practice/Swift_Practice/
// 現在の行数
__LINE__
// 現在のカラム数
__COLUMN__
// 現在のメソッド・関数
__FUNCTION__
print(__FUNCTION__, __LINE__)
//=> viewDidLoad() 17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment