8 lines
201 B
Text
8 lines
201 B
Text
/* Distributed_programming_server_2.wren */
|
|
|
|
class TaxComputer {
|
|
static tax(amount, rate) {
|
|
if (amount < 0) Fiber.abort("Negative values not allowed.")
|
|
return amount * rate
|
|
}
|
|
}
|