Files
nand2tetris/asm/venv/bin/jupyter
Sven Riwoldt c7bc862c6f asm
2024-04-01 20:30:24 +02:00

9 lines
260 B
Python
Executable File

#!/Volumes/Daten01/Documents/Python/asm/venv/bin/python3.11
# -*- coding: utf-8 -*-
import re
import sys
from jupyter_core.command import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())