spondunoob (spondulix)

Race #150

View Pit Stop page for race #150 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 66.12 wpm (27.95 seconds elapsed during race)
Race Start July 23, 2019 3:20:44pm UTC
Race Finish July 23, 2019 3:21:12pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 23.14
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")