Skip to content
View TryNeo's full-sized avatar
:shipit:
:shipit:
  • Ecuador

Block or report TryNeo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
TryNeo/README.md
#!/usr/bin/python
# -*- coding: utf-8 -*-

class TechnologistSoftwareDevelopment:

    def __init__(self):
        self.name = "Josue Lopez"
        self.role = "software development technologist"
        self.language_spoken = ["es_ES"]
        self.work = ['Credimatic']
        self.hobbies = ['Games','Memes']
        self.age = 23

    def say_hi(self):
        print("Thanks for dropping by, hope you find some of my work interesting.")

if __name__ == "__main__":
   me = TechnologistSoftwareDevelopment()
   me.say_hi()

@TryNeo's activity is private