patterns/decorator/coffee/houseblend.d

17 lines
231 B
D
Raw Permalink Normal View History

2022-12-05 07:38:19 +00:00
module decorator.coffee.houseblend;
import decorator.coffee.beverage;
class HouseBlend : Beverage
{
this()
{
description = "House Blend Coffee";
}
override double cost()
{
return .89;
}
}