https://github.com/johnnymayodev/johnnymayodev
My GitHub README
https://github.com/johnnymayodev/johnnymayodev
Last synced: 3 months ago
JSON representation
My GitHub README
- Host: GitHub
- URL: https://github.com/johnnymayodev/johnnymayodev
- Owner: johnnymayodev
- Created: 2023-11-20T04:23:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-11T15:47:56.000Z (about 1 year ago)
- Last Synced: 2025-02-02T18:24:02.866Z (5 months ago)
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to my GitHub profile! 👋
```gleam
// lang: gleam -> https://gleam.run/
type Person = {
name: String
role: String
skills: List
hobbies: List
}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"]
}
}
```