Skip to content

Instantly share code, notes, and snippets.

View fastbike's full-sized avatar

David Moorhouse fastbike

View GitHub Profile
@fastbike
fastbike / BlueberryCheeseCake.pas
Created August 22, 2022 05:53
Factory Pattern in Delphi
unit BlueberryCheeseCake;
interface
uses
CheeseCakeInterface;
type
TBlueberryCheeseCake = class(TCheeseCake)
public