|
package main
import "fmt"
type Developer struct {
name string
username string
role string
stack []string
hardware []string
hobbies []string
}
func main() {
me := Developer{
name: "Patrick James V. Romasanta",
username: "Mr-Patrick-James",
role: "Full-Stack Developer",
stack: []string{"PHP", "C#", "JavaScript", "VueJS", "HTML", "CSS", "MySQL", "Arduino"},
hobbies: []string{"Sleeping", "Eating", "Writing", "Reading"},
}
fmt.Println(me)
}|
C# |
JavaScript |
GitHub |
MySQL |
REST API |
|
PHP |
VueJS |
HTML |
CSS |
Git |
|
MySQL |
SQLite |
Arduino |
WinForms |
VSCode |




