Userzin (userzin)

Race #43

View Pit Stop page for race #43 by userzinGhost race

View profile for Userzin (userzin)

Official speed 54.23 wpm (34.08 seconds elapsed during race)
Race Start November 30, 2021 7:45:53pm UTC
Race Finish November 30, 2021 7:46:27pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 18.98
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")