Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created October 7, 2018 16:27
Show Gist options
  • Save vialyx/43d37b5765a393eeea73898c5e95c83c to your computer and use it in GitHub Desktop.
Save vialyx/43d37b5765a393eeea73898c5e95c83c to your computer and use it in GitHub Desktop.
struct Payment {
var amount: Float
var comission: Float
var totalAmount: Float {
return amount + comission
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment