Adsd (kol123313)

Race #6

View Pit Stop page for race #6 by kol123313Ghost race

View profile for Adsd (kol123313)

Official speed 56.53 wpm (32.69 seconds elapsed during race)
Race Start May 2, 2021 1:47:50am UTC
Race Finish May 2, 2021 1:48:23am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 19.79
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")