https://github.com/rcghpge/rcghpge
About me
https://github.com/rcghpge/rcghpge
Last synced: 3 months ago
JSON representation
About me
- Host: GitHub
- URL: https://github.com/rcghpge/rcghpge
- Owner: rcghpge
- Created: 2024-04-19T06:44:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-25T06:06:55.000Z (4 months ago)
- Last Synced: 2025-01-25T07:17:24.794Z (4 months ago)
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About Me
Generate an About Me for your GitHub page and also run your first line of code in Mojo 🔥
```mojo
from collections import list, stringfn about_me() raises -> String:
"""
Generate an About Me in Mojo.
"""
var name = "Robert"
var profession = "full-time university student."
var interests = List[String]()
interests.append("Research")
interests.append("Development")
interests.append("Programming")
interests.append("Engineering")
interests.append("AI")
interests.append("Data Science")
var current_focus = "graduating."var about_me_text = String("Hey, I'm " + String(name) + ". I am a " + String(profession))
about_me_text += ("\nMy interests include:\n")
for i in range(len(interests)):
var interest = interests[i]
about_me_text += String("- ") + interest + "\n"
about_me_text += ("Currently, I'm focusing on " + String(current_focus))
return about_me_textfn main() raises:
print(about_me())
```
TLDR: I'm Robert - MySpace taught me how to code