Asif (asif04)

Race #1

View Pit Stop page for race #1 by asif04Ghost race

View profile for Asif (asif04)

Official speed 43.31 wpm (42.67 seconds elapsed during race)
Race Start February 15, 2024 9:47:13am UTC
Race Finish February 15, 2024 9:47:56am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 15.16
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")