I'm trying to get this code to work, and it looks like update isn't getting called. Nothing is printed to the console with this code, why?
from multiprocessing import Process
def update():
print("hi")
if __name__ == '__main__':
p = Process(target=update, args=())
p.start()
p.join()