-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.ts
More file actions
38 lines (35 loc) · 1.04 KB
/
mod.ts
File metadata and controls
38 lines (35 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class GirlFriend{
is_single: boolean;
name: string;
age: string;
does_love_you: boolean;
is_hot: boolean;
is_beautiful: boolean;
is_pretty: boolean;
is_awesome: boolean;
is_cute: boolean;
is_funny: boolean;
is_sweet: boolean;
constructor() {
this.name = "Kitagawa";
this.age = "20";
this.is_hot = true;
this.does_love_you = true;
this.is_single = false;
this.is_pretty = true;
this.is_beautiful = true;
this.is_cute = true;
this.is_awesome = true;
this.is_funny = true;
this.is_sweet = true;}
kiss_me() {
console.log("Kissing you");
}
hug_me() {
console.log("Hugging you");
}
introduce_yourself() {
console.log("Hi, I'm " + this.name + " and I'm " + this.age + " years old.");
}
}
export default GirlFriend;