Switch to a R7RS layout with csm

This commit is contained in:
cælōrum spectātrīx 2025-11-21 22:13:54 +01:00
parent e632996711
commit 81a50c48c2
3 changed files with 23 additions and 14 deletions

20
rain.sld Executable file
View file

@ -0,0 +1,20 @@
#!/bin/sh
#| -*- scheme -*-
exec csi -s "$0" "$@"
|#
(define-library (rain)
(import
(scheme base)
(scheme file)
(chicken base)
(chicken io)
(chicken format)
(chicken port)
(chicken process-context)
(html-parser)
(openssl) ; has to be before http-client
(http-client)
(matchable)
(srfi-18))
(include "rain.scm")
(begin (main (command-line-arguments))))