Skip to content

johnnymayodev/johnnymayodev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 

Repository files navigation

Welcome to my GitHub profile! 👋

// lang: gleam -> https://gleam.run/
type Person = {
    name: String
    role: String
    skills: List<String>
    hobbies: List<String>
}

pub fn main() {
    let johnny: Person = {
        name: "Johnny Mayo"
        role: "Computer Science Student at the New Jersey Institute of Technology"
        skills: ["Python", "HTML", "CSS" "JavaScript", "Svelte", "Docker"]
        hobbies: ["Baking", "Formula 1", "Video Games"]
    }
}