i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Race #14

View Pit Stop page for race #14 by its_over_i_have_da_high_groundGhost race

View profile for i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Official speed 39.43 wpm (46.87 seconds elapsed during race)
Race Start June 29, 2021 1:55:48am UTC
Race Finish June 29, 2021 1:56:34am UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 13.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")