Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1.  
  2. let firstName: String = "Vikusha"
  3. let secondName = "Burnos"
  4.  
  5. var height: Double = 158.5
  6. var weight = 55
  7. weight = 53
  8.  
  9. print(weight)
  10. print(firstName, secondName, weight)
  11.  
  12. print("My name is" + " " + firstName + " " + secondName)
  13.  
  14. var sum = weight + Int(height)
  15. print(sum)
  16.  
  17. var myCurrentGoal: String?
  18. print(myCurrentGoal)
  19.  
  20. myCurrentGoal = "endCoursesSuccessfully"
  21. print(myCurrentGoal)
  22.  
  23. var oneMoreGoal = myCurrentGoal ?? ""
  24. print(oneMoreGoal)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement