Amn1_putri_chan🕋 (amnii)

Race #40

View Pit Stop page for race #40 by amniiGhost race

View profile for Amn1_putri_chan🕋 (amnii)

Official speed 40.69 wpm (45.42 seconds elapsed during race)
Race Start December 15, 2022 11:56:12am UTC
Race Finish December 15, 2022 11:56:57am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 14.24
Text #10002 (Length: 154 characters)

import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")