27 lines
350 B
Plaintext
27 lines
350 B
Plaintext
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)
|
|
}
|