nimantha (nimanthad)

Race #2

View Pit Stop page for race #2 by nimanthadGhost race

View profile for nimantha (nimanthad)

Official speed 51.09 wpm (36.17 seconds elapsed during race)
Race Start September 2, 2023 1:02:23pm UTC
Race Finish September 2, 2023 1:02:59pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 17.88
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")