Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SiarheiFedartsou/39500133fe928ba4c8442e3e73dbd0a6 to your computer and use it in GitHub Desktop.
Save SiarheiFedartsou/39500133fe928ba4c8442e3e73dbd0a6 to your computer and use it in GitHub Desktop.
1.swift
protocol Shape {}
struct Rectangle: Shape {
let width: Float
let height: Float
}
struct Circle: Shape {
let radius: Float
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment