Full Stack Web Developer & Machine Learning Enthusiast | Third Year Student at VIT Vellore
Dont forget to checkout My Latest Project - Interact ( Link to Website )
package main
func (me *Me) sayHi() {
fmt.Println("Well, well, well... What do we have here? It's a curious visitor on my profile! ππ")
}
func main() {
me := Me{
name: "Pratham Mishra",
role: "Full Stack Web Developer & Machine Learning Enthusiast",
languages: []string{"GoLang", "TypeScript", "Python"},
frameworks: []string{"Go Fiber", "Next Js", "Express Js"},
ml: []string{"Scikit Learn", "TensorFlow", "NLTK"}
}
me.sayHi()
}