💾 Archived View for tilde.club › ~nfg › blog › captains-log.gmi captured on 2022-04-29 at 11:30:33. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-03)

-=-=-=-=-=-=-

Captain's log

Stardate 20210418...

def pull_arm(arm_choice):
    if arm_choice == 0:
        return random.randrange(-50,0)
    
    elif arm_choice == 1:
        return random.randrange(-30,10)
    
    elif arm_choice == 2:
        return random.randrange(0,20)
    
    elif arm_choice == 3:
        return random.randrange(30,50)