Notes/Untitled.md

370 B

add :: (Int -> Int) -> Int
add x y = x+y

class Number:
	# Some implementation

class Float(Number):
	# Some implentation

class Integer(Number):
	# Some implementation


def add(numA:Number, numB:Number) -> Number:
	

class MyClass:
	def __eq__(self):
		# MyClass :: Eq
    def __str__(self)
	    # MyClass :: Show
	def __