This repository has been archived on 2022-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
|
import std.stdio : writeln;
|
|
import coffee, tea;
|
|
|
|
void main()
|
|
{
|
|
auto tea = new Tea();
|
|
auto coffee = new Coffee();
|
|
writeln("Making tea...");
|
|
tea.prepareRecipe();
|
|
writeln("Making coffee...");
|
|
coffee.prepareRecipe();
|
|
}
|