Drills tagged with this skill, unpassed first. Pass them all to mark the skill ready for scenarios.
greet(name, greeting="Hello") that returns "{greeting}, {name}!". The second parameter has a default value.clamp(value, low, high) that returns value if it's between low and high (inclusive), low if it's below, high if it's above.discounted_price(price, discount_percent=10, tax_percent=5) that applies the discount first, then adds tax on the discounted amount. Both percentages have defaults.