adding lisp-interpreter
Meson Build and Deploy / build (push) Failing after 29s

This commit is contained in:
Arthur Barraux
2025-09-24 10:58:09 +02:00
parent ab482df604
commit d8fc7d2d67
57 changed files with 30702 additions and 5 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/bin/bash
SRC=*.scm
cat lib.h
echo "// Generated from scheme source."
echo "#ifdef LISP_IMPLEMENTATION"
for FILE in $SRC
do
echo "static const char* lib_$(basename $FILE .scm)_src_ = "
cat $FILE | ./text2c.sh
echo ";"
echo ""
done
cat lib.c
echo "#endif"