This is supposed to be a prime generator. I try running this but it doesn't print out the integers. The program will also end right away. I don't know if its running
def prime_gen():
start = 1
while start:
if start % start == 0:
print(start)
start += 1