import system'dynamic; class CameraFeature { cameraMsg = "camera"; } class MobilePhone { mobileMsg = "phone"; } singleton CameraPhone { new() = new MobilePhone().mixInto(new CameraFeature()); } public program() { var cp := CameraPhone.new(); console.writeLine(cp.cameraMsg); console.writeLine(cp.mobileMsg) }