some new stuff.

idk its all pretty fun! some C++ too!
This commit is contained in:
2025-10-15 11:16:51 +02:00
parent 1b31319003
commit d0eaabdd87
23 changed files with 3448 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from setuptools import setup, Extension
module = Extension("sorting", sources=["sorting.c"])
setup(
name="sorting",
version="1.0",
description="Simple C sorting extension",
ext_modules=[module],
)