INDO EUROPEAN (indo_european_sun_god)

Race #18

View Pit Stop page for race #18 by indo_european_sun_godGhost race

View profile for INDO EUROPEAN (indo_european_sun_god)

Official speed 50.86 wpm (36.34 seconds elapsed during race)
Race Start November 12, 2021 1:09:25pm UTC
Race Finish November 12, 2021 1:10:01pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 17.80
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")