Guest User

Untitled

a guest
May 23rd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. struct DailyShoping {
  2. var info:[String:Any] = ["Apple":100,"Oranage":130,"banana":90,"Water Milan":"Gift"]
  3. subscript (key:String) -> Any {
  4. get {
  5. if let newValue = info[key] {
  6. return newValue
  7. } else {
  8. return 0
  9. }
  10. }
  11. }
  12. }
Add Comment
Please, Sign In to add comment