package main
import (
"fmt"
)
var aboutMe = struct {
Name string
Overview string
LinkedIn string
FavouriteProgrammingLanguages []string
}{
Name: "Farid Yusof",
Overview: `Passionate, innovative, and results-driven leader who believes in continuous learning.
A strong believer in technology as the key enabler for social change.`,
LinkedIn: "linkedin.com/in/faridyusof727",
FavouriteProgrammingLanguages: []string{"Go", "Typescript", "Javascript", "PHP"},
}
func main() {
fmt.Println("Name:", aboutMe.Name)
fmt.Println("Overview:", aboutMe.Overview)
fmt.Println("LinkedIn:", aboutMe.LinkedIn)
fmt.Println("Favorite Programming Languages:", aboutMe.FavouriteProgrammingLanguages)
}
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.