Skip to content

Instantly share code, notes, and snippets.

@mochadwi
Last active June 23, 2021 16:10
Show Gist options
  • Save mochadwi/5de4dedb953915f2469fa10234f0b0b5 to your computer and use it in GitHub Desktop.
Save mochadwi/5de4dedb953915f2469fa10234f0b0b5 to your computer and use it in GitHub Desktop.
fun updateOrderQuanity(orderId: OrderId, quantity: Int) {
require(quantity > 0) { "Quantity must be positive" }
val order = loadOrder(orderId)
order.quantity = quantity
storeOrder(order)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment