francisco (franciscolopezsancho)

Race #1078

View Pit Stop page for race #1078 by franciscolopezsanchoGhost race

View profile for francisco (franciscolopezsancho)

Official speed 61.01 wpm (30.29 seconds elapsed during race)
Race Start December 13, 2021 9:13:40am UTC
Race Finish December 13, 2021 9:14:10am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 21.35
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")