8000 Update README.md · UtpalCoding/UtpalCoding@2afc640 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2afc640

Browse files
authored
Update README.md
1 parent 34bcca1 commit 2afc640

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

README.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,27 @@
1-
# MUEOR-RAKIB
1+
<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

Comments
 (0)
0