Amit (amit__123)

Race #49

View Pit Stop page for race #49 by amit__123Ghost race

View profile for Amit (amit__123)

Official speed 39.72 wpm (46.53 seconds elapsed during race)
Race Start August 1, 2023 1:30:40pm UTC
Race Finish August 1, 2023 1:31:27pm UTC
Outcome No win (3 of 4)
Opponents 1. inusah (48.69 wpm)
Accuracy 93.0%
Points 13.90
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")