Welcome to the CHICKEN Scheme pasting service
"r7rs library import trouble 1 added by sethalves on Fri Jul 26 20:14:20 2013
#! /bin/sh #| -*- scheme -*- exec csi -s $0 "$@" |# (use r7rs) (import-for-syntax r7rs) (define-library (hi fuh) (export buh) (cond-expand (chicken (import (srfi-4)))) (begin (require-extension srfi-4) (define (buh) (u8vector 1 2 3)))) (import (hi fuh)) (display (buh)) (newline)