a (suk_)

Race #6

View Pit Stop page for race #6 by suk_Ghost race

View profile for a (suk_)

Official speed 48.29 wpm (38.27 seconds elapsed during race)
Race Start December 16, 2019 1:09:26pm UTC
Race Finish December 16, 2019 1:10:04pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 16.90
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")