reorganize kiss into its own directory

This commit is contained in:
2020-12-05 18:35:09 -07:00
commit b440f0f07c
30 changed files with 2430 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#! /bin/bash
# "python" is supposed to mean Python3 everywhere now, but not in practice
if [ ! -z "$(which python3)" ]; then
python3 bin/py/test.py
else
python bin/py/test.py
fi