Daniel (siichotic)

Race #2

View Pit Stop page for race #2 by siichoticGhost race

View profile for Daniel (siichotic)

Official speed 61.17 wpm (30.21 seconds elapsed during race)
Race Start September 8, 2020 3:29:16am UTC
Race Finish September 8, 2020 3:29:47am UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 21.41
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")