guile-rsv

R7RS Scheme library for reading and writing RSV (Rows of String Values) data format. Specified in https://github.com/Stenway/RSV-Specification and demonstrated in https://www.youtube.com/watch?v=tb_70o6ohMA
Log | Files | Refs | README | LICENSE

commit fb47eaef4e1d9b345143334846f1a212d7221891
parent 40044ee095ebc56214d116a8195c191bac0cef70
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Sun, 14 Jan 2024 14:19:19 +0200

Change shebang for "maximum portability" as the manual says………

Diffstat:
Mrsv2scm.scm | 3++-
Mscm2rsv.scm | 3++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/rsv2scm.scm b/rsv2scm.scm @@ -1,4 +1,5 @@ -#!/usr/bin/env -S guile --r7rs -e main -L . -s +#!/usr/bin/env sh +exec guile --r7rs -e main -L . -s "$0" "$@" !# ;;; Scheme implementation of RSV - Rows of String Values. diff --git a/scm2rsv.scm b/scm2rsv.scm @@ -1,4 +1,5 @@ -#!/usr/bin/env -S guile --r7rs -e main -L . -s +#!/usr/bin/env sh +exec guile --r7rs -e main -L . -s "$0" "$@" !# ;;; Scheme implementation of RSV - Rows of String Values.