Skip to content

Instantly share code, notes, and snippets.

@SiarheiFedartsou
Created December 4, 2017 18:04
Show Gist options
  • Save SiarheiFedartsou/9be40717893737478041bbefb7dfd910 to your computer and use it in GitHub Desktop.
Save SiarheiFedartsou/9be40717893737478041bbefb7dfd910 to your computer and use it in GitHub Desktop.
let rectangle = Rectangle(width: 42, height: 42)
let circle = Circle(radius: 42)
print(rectangle.accept(SquareShapeVisitor())) // 1764.0
print(circle.accept(SquareShapeVisitor())) // 5541.77
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment