10 lines
132 B
TypeScript
10 lines
132 B
TypeScript
|
class Calculating implements Occupation {
|
||
|
public constructor() {
|
||
|
}
|
||
|
|
||
|
public work(): void {
|
||
|
show("*type* *type* *type*");
|
||
|
}
|
||
|
}
|
||
|
|