swapnil singh (sws_swapnilsingh)

Race #1

View Pit Stop page for race #1 by sws_swapnilsinghGhost race

View profile for swapnil singh (sws_swapnilsingh)

Official speed 32.02 wpm (57.71 seconds elapsed during race)
Race Start July 9, 2023 4:08:37pm UTC
Race Finish July 9, 2023 4:09:35pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 11.21
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")