Skip to content

Instantly share code, notes, and snippets.

@SiarheiFedartsou
Created December 4, 2017 18:01
Show Gist options
  • Save SiarheiFedartsou/0b52e0afa4a2b8b1781f579fb2fca3db to your computer and use it in GitHub Desktop.
Save SiarheiFedartsou/0b52e0afa4a2b8b1781f579fb2fca3db to your computer and use it in GitHub Desktop.
struct SquareShapeVisitor: ShapeVisitor {
func visit(_ rectangle: Rectangle) -> Float {
return rectangle.width * rectangle.height
}
func visit(_ circle: Circle) -> Float {
return circle.radius * circle.radius * Float.pi
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment