leonidas (awsomaw)

Race #47

View Pit Stop page for race #47 by awsomawGhost race

View profile for leonidas (awsomaw)

Official speed 135.70 wpm (13.62 seconds elapsed during race)
Race Start March 10, 2020 9:47:56pm UTC
Race Finish March 10, 2020 9:48:10pm UTC
Outcome No win (1 of 1)
Accuracy 99.0%
Points 47.50
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")