VOY 5x08: Nothing Human

  • stupidcasey@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 month ago
    def recursive_algorithm(x):
       If 1 + x == 2:
          recursive_algorithm(2)
       else:
          exit()
    recursive_algorithm(1)