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 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-11T15:47:56.000Z (almost 2 years ago)
- Last Synced: 2025-02-02T18:24:02.866Z (about 1 year 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
degree: String
skills: List
hobbies: List
}
pub fn main() {
let johnny: Person = {
name: "Johnny Mayo"
role: "Software Engineer"
degree: "Bachelor's of Computer Science from New Jersey Institute of Technology"
skills: ["JavaScript", "Python", "HTML/CSS"]
hobbies: ["Go-Karting", "Video Games", "Hiking at National Parks"]
}
}
```
