안드레아 (o________o)

Race #8

View Pit Stop page for race #8 by o________oGhost race

View profile for 안드레아 (o________o)

Official speed 99.02 wpm (18.66 seconds elapsed during race)
Race Start April 1, 2020 10:35:55am UTC
Race Finish April 1, 2020 10:36:14am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 34.66
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")