- Hi👋, I’m @Dikrey/Muhammad Raihan
- 👨💻 A passionate Programmer with endless enthusiasm for technology.
- 🌱 Currently learning at SMKN 1 PST while continuously exploring the world of coding.
- 🚀 My vision: To become a Fullstack Developer capable of creating digital solutions with global impact.
- 💡 My dream is not just to be a developer, but also an innovator who turns challenges into opportunities.
- 🤝 I’m open to collaborating with anyone eager to create innovative projects and make a positive impact.
- 🌟 My skills: Proficient in Frontend Development with a touch of creativity, and skilled in Backend Development to build strong and reliable systems.
- 😄 Pronouns: He/Him
- ⚡ Fun fact: I can spend hours coding but still lose track of time when playing my favorite games!
💬 If you have big ideas or exciting projects, let’s discuss and bring them to life together!
package main
import "fmt"
type Biodata struct {
Nama, Alamat, Email, Telepon string
Umur int
Pendidikan, Pengalaman []string
}
func main() {
bio := Biodata{
Nama: "Muhammad Raihan",
Umur: 16,
Alamat: "Jalan Indonesia",
Email: "[email protected]",
Telepon: " - ",
Pendidikan: []string{
"MTsN 1 MDN",
"SMKN 1 PST",
},
Pengalaman: []string{
"Programmer",
"Student",
},
}
fmt.Println("Biodata:")
fmt.Println("Nama:", bio.Nama)
fmt.Println("Umur:", bio.Umur)
fmt.Println("Alamat:", bio.Alamat)
fmt.Println("Email:", bio.Email)
fmt.Println("Telepon:", bio.Telepon)
fmt.Println("Pendidikan:", bio.Pendidikan)
fmt.Println("Pengalaman:", bio.Pengalaman)
}