8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bcca1 commit 2afc640Copy full SHA for 2afc640
README.md
@@ -1 +1,27 @@
1
-# MUEOR-RAKIB
+<h5 align="center"><b>MY INFORMATION</b></h5>
2
+
3
+```go
4
+package main
5
6
+import "fmt"
7
8
+type Person struct {
9
+ name string
10
+ username string
11
+ age int
12
+ hobbies []string
13
+ job string
14
+}
15
16
+func main() {
17
+ var me = new(Person)
18
19
+ me.name = "U7P4L 1N"
20
+ me.username = "U7P4L-IN"
21
+ me.age = "20"
22
+ me.job = "ai developer | web developer"
23
+ me.hobbies = []string{"code", "anime", "music"," singing"}
24
25
+ fmt.Println(me)
26
27
+```
0 commit comments