Initial commit
This commit is contained in:
commit
222808c4bb
7 changed files with 125 additions and 0 deletions
14
abbrev.sld
Normal file
14
abbrev.sld
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
;;; Abbrev library for R7RS Scheme.
|
||||
;;; Calculate the set of unique abbreviations for a given set of
|
||||
;;; words. (Borrowed from Ruby's Abbrev.)
|
||||
|
||||
;;; SPDX-License-Identifier: LicenseRef-OWL-0.9.4
|
||||
;;; SPDX-FileCopyrightText: (c) 2017 Peter Lane
|
||||
;;; SPDX-FileCopyrightText: (c) 2025 afiw <afiw@linuxposting.xyz>
|
||||
|
||||
(define-library (abbrev)
|
||||
(import (scheme base)
|
||||
(only (srfi-1) remove)
|
||||
(only (srfi-13) string-prefix?))
|
||||
(export abbrev)
|
||||
(include "abbrev.scm"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue