12 lines
174 B
TypeScript
12 lines
174 B
TypeScript
export class Animal {
|
|
public name: string;
|
|
|
|
public constructor(name: string) {
|
|
this.name = name;
|
|
}
|
|
|
|
public make_sound() {
|
|
console.log(`${this.name}:`);
|
|
}
|
|
}
|