Ok guys, this is driving me crazy. I know java, but python is nuts. I'm just trying to writing a simple counter program using a for loop, but I can't do that because this language is made for weirdos. Haha, ok just kidding on that one, but seriously, what am I doing wrong?
class makeLines:
    def main():
       counter()
        
    def counter():
        for i in range(0,10):
            print(i)
When I run it, nothing happens. No output...
 
     
     
    