initial commit

This commit is contained in:
Balakrishnan Balasubramanian 2022-11-30 11:59:52 -05:00
commit 73bd45462c

11
vimtabdiff.py Executable file
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()