An open API service indexing awesome lists of open source software.

https://github.com/reislcb/reislcb

Config files for my GitHub profile.
https://github.com/reislcb/reislcb

config github-config

Last synced: 5 months ago
JSON representation

Config files for my GitHub profile.

Awesome Lists containing this project

README

          

```python
def Reis(name = None, age = None, nacionality = None,):
print(name)
print(age)
print(nacionality)

Reis(name = "My name is Lenny", age = f"I'm {17} years old", nacionality = "I live in Brazil")

studiyng = [" Python", " Javascript", " C", " Assembly", " Typescript"]
interests = [" Play videogames", " Watch anime", " Development"]

print("\nStudying:")
for i in studiyng:
print(i)

print("\nInterests:")
for i in interests:
print(i)
```