Initial release

This commit is contained in:
allegroai
2019-10-25 22:28:44 +03:00
parent 4d808bedc5
commit 224a709f40
101 changed files with 26263 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
def main():
if not (1 / 2 == 0.5):
raise ValueError('failure')
print('success')
if __name__ == "__main__":
main()