Skip to content

Instantly share code, notes, and snippets.

@chrsp
Last active January 24, 2021 14:41
Show Gist options
  • Save chrsp/3021ab73be43990f8667f8e93e9700eb to your computer and use it in GitHub Desktop.
Save chrsp/3021ab73be43990f8667f8e93e9700eb to your computer and use it in GitHub Desktop.
// Module: Domain
protocol Cookable {
func cook()
}
protocol Recipe: Cookable {
// Recipe definition
}
struct Ingredient: Codable {
// Ingredient definition
}
struct SpaghettiCarbonara: Codable, Recipe {
let ingredients: [Ingredient]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment