Guest User

Untitled

a guest
May 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. class Square {
  2. var width: Float = 0.0
  3.  
  4. required init(width: Float) {
  5. self.width = width
  6. }
  7. }
  8.  
  9. class Circle {
  10. var radius: Float = 0.0
  11.  
  12. required init(radius: Float) {
  13. self.radius = radius
  14. }
  15. }
  16.  
  17. class Traingle {
  18. var width: Float = 0.0
  19. var height: Float = 0.0
  20.  
  21. required init(width: Float, height: Float) {
  22. self.width = width
  23. self.height = height
  24. }
  25. }
Add Comment
Please, Sign In to add comment