Milan (m_i_n_o)

Race #3

View Pit Stop page for race #3 by m_i_n_oGhost race

View profile for Milan (m_i_n_o)

Official speed 30.48 wpm (60.63 seconds elapsed during race)
Race Start October 29, 2022 10:37:16am UTC
Race Finish October 29, 2022 10:38:16am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 10.67
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")