Hi Owen, On Sat, Mar 02 2024, Owen T. Heisler wrote:
> (start #~(lambda () > #$(say-hello))) My code works when I place it directly into the 'start' G-exp. [1] By comparison, I think you have two lambdas (with quoting and unquoting). I would try something like this: (start #~(let ((port (open-pipe* OPEN_WRITE "logger" "-plocal0.alert"))) (display "========say-hello========\n" port) (close-pipe port))) Kind regards Felix [1] https://codeberg.org/lechner/juix/src/commit/fe8cac5165bfbe290413cedd36a492109e29e38b/juix/deploy/cachefilesd.scm#L158