package readme
import (
"fmt"
"encoding/json"
"log"
)
type ReadMe struct {
Name string `json:"name"`
Located string `json:"located"`
Studying string `json:"studying"`
FavoriteLanguages []string `json:"favorite_languages"`
FavoriteGames []string `json:"favorite_games"`
Hobbies []string `json:"hobbies"`
MainProject string `json:"main_project"`
}
func main() {
readme := ReadMe{
Name: "Bryan Lawless",
Located: "Denver, Colorado",
Studying: "Computer Science, Cybersecurity, Machine Learning",
FavoriteLanguages: []string{"golang", "typescript", "python"},
FavoriteGames: []string{"doom", "space marines", "helldivers 2", "blade and sorcery", "half life"},
Hobbies: []string{"tennis", "mountain biking", "electronics"},
MainProject: "https://github.com/Quasec"
}
data, err := json.Marshal(readme)
if err != nil {
log.Fatal(err)
}
fmt.Println(string(readme[:]))
}
π§
Probably working on Snapflow
Pinned Loading
-
Student-Scoop/Backend-API-FBLA
Student-Scoop/Backend-API-FBLA Public archiveπΎ The backend API for the Student Scoop mobile app and website. This project was inspired by and built for the FBLA 2023-2024 mobile development event.
TypeScript 1
-
Student-Scoop/Mobile-App-FBLA
Student-Scoop/Mobile-App-FBLA Public archiveπ± The mobile app for Student Scoop, inspired and built for the FBLA 2024 mobile application event.
TypeScript 1
-
Student-Scoop/Website
Student-Scoop/Website Publicπ The official website for Student Scoop.
TypeScript
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.