sfl (streetfighterlan123)

Race #1

View Pit Stop page for race #1 by streetfighterlan123Ghost race

View profile for sfl (streetfighterlan123)

Official speed 81.31 wpm (22.73 seconds elapsed during race)
Race Start May 24, 2020 12:38:07am UTC
Race Finish May 24, 2020 12:38:30am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 28.46
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")