Initial commit

This commit is contained in:
Casey 2024-01-26 20:38:58 +03:00
commit 8d8a172452
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
3 changed files with 9 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.py[cow]
__pycache__/
venv/

5
nfuck/__main__.py Normal file
View File

@ -0,0 +1,5 @@
def main():
print('Hi!')
if __name__ == '__main__':
main()

1
requirements.txt Normal file
View File

@ -0,0 +1 @@