initial commit

This commit is contained in:
2022-11-30 11:59:52 -05:00
commit 73bd45462c
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/python3
import os,sys
def main():
local, remote = sys.argv[1:]
print("Helloworld")
print(f"{local=} {remote=}")
if __name__ == '__main__':
main()