mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
14 lines
297 B
Scheme
14 lines
297 B
Scheme
;;;; Cyclone Scheme
|
|
;;;; https://github.com/justinethier/cyclone
|
|
;;;;
|
|
;;;; Copyright (c) 2017, Koz Ross
|
|
;;;;
|
|
;;;; This module is an interface to the Basic Format Strings library.
|
|
(define-library
|
|
(srfi 28)
|
|
(import
|
|
(scheme base)
|
|
(scheme write))
|
|
(export format)
|
|
(include "28.scm"))
|
|
|