init upload

This commit is contained in:
Luxferre
2026-07-02 23:26:38 +03:00
commit 63a541953f
7 changed files with 955 additions and 0 deletions
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
# A script to prepare a distributable Python version of Clyx
# Run strictly from this directory
TARGET="$1"
[ -z $TARGET ] && TARGET='dist/clyx_py/clyx'
mkdir -p $TARGET
cp clyx.py lib.clx clyx_repl.clx test.clx $TARGET/
echo "Distribution created at $TARGET"