14 lines
174 B
Python
14 lines
174 B
Python
class Mewto:
|
|
def hello(self):
|
|
"""
|
|
ASDF
|
|
"""
|
|
|
|
return 2 + 4
|
|
|
|
def bar(self, a, b):
|
|
return a + b
|
|
|
|
def poke(a, b):
|
|
return a * b
|