Ram Zero

Results 2 comments of Ram Zero

Thanks!

you have to encapsulate your test code in a function and call it from a __main__ ``` def your_test_code_here(): .... if __name__ == '__main__': your_test_code_here() ```