11 lines
145 B
Python
11 lines
145 B
Python
import sys
|
|
sys.path.append("..")
|
|
import harness
|
|
|
|
|
|
def proc(mod):
|
|
x = mod.H()
|
|
for i in range(10000000):
|
|
x += i
|
|
|
|
harness.run(proc)
|