Skip to content

Commit

Permalink
添加图标
Browse files Browse the repository at this point in the history
  • Loading branch information
ompunch committed Oct 30, 2018
1 parent 40eada2 commit e1d7d77
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,11 @@

import UIKit


struct Money: CustomStringConvertible {
var value: Double
init(value: Double) {
self.value = value
}

public var description: String { return "\(value)" }
}
Binary file modified 原点习惯/.DS_Store
Binary file not shown.

0 comments on commit e1d7d77

Please sign in to comment.