#!/usr/bin/python
# -*- coding: utf-8 -*-
class Kid:
def __init__(self):
self.name = "mowhn"
self.role = "Kid"
self.language_spoken = ["English"]
def say_hi(self):
print("Welcome to my world of development! I break things, code them, and learn as I grow.")
me = Kid()
me.say_hi()
I’m a kid who loves to learn, code, and build. From experimenting. I focus on gaining knowledge and creating projects for fun.