0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

swift コメントアウト

Last updated at Posted at 2020-04-15

##「時間ないからって端折るな」コメントアウト備忘録


  /// - Author: 作成者名
  /// - Authors:作成者名複数
  /// - Bug:
  /// - Complexity: 複雑さ
  /// - Copyright:
  /// - Date: 作成日
  /// - important: 知っておいて欲しい事
  /// - Precondition: 前提条件
  /// - Postcondition: 事後条件
  /// - Requires: Preconditionよりこっちの方がいいかも
  /// - Note:
  /// - Todo:
  /// - Version:
  /// - Warning:
  /// - Parameters:
  /// -    familyName:姓
  /// -    firstName:名
  /// - Returns:名字 (戻り値の説明)
  func sample(familyName: String, firstName: String) -> String{
    return familyName + firstName
  }

こんな感じで書いておいて。とお願いする時に必要だったので作成。
間違いあったらご指摘いただけると幸いです。
まあ結局書かない現場の方が多いんだけどね。w

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?