π Welcome to my GitHub page!
I'm a dynamic backend developer with a foundation in computer science, passionate about Django and Go.
Explore my repositories to see my clean and efficient coding style. Let's connect and build something amazing together!
type UserProfile struct {
Name string
Email string
LinkedIn string
}
func main() {
user := UserProfile{
Name: "Fateme Jadidi",
Email: "[email protected]",
LinkedIn: "https://www.linkedin.com/in/fateme-jadidi2001/",
}
---