Amit (amit__123)

Race #47

View Pit Stop page for race #47 by amit__123Ghost race

View profile for Amit (amit__123)

Official speed 38.85 wpm (47.57 seconds elapsed during race)
Race Start August 1, 2023 1:28:30pm UTC
Race Finish August 1, 2023 1:29:18pm UTC
Outcome No win (2 of 2)
Opponents 1. inusah (46.08 wpm)
Accuracy 92.0%
Points 13.60
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")