123456789101112131415161718192021222324252627 |
- ;;; Lispy-Fennel (LF) --- The Functional Fennel Library
- ;;;
- ;;; Copyright (C) 2020 Kevin "The Nuclear" Bloom <nuclearkev@dragora.org>
- ;;;
- ;;; This file is part of LF.
- ;;;
- ;;; LF is free software: you can redistribute it and/or modify
- ;;; it under the terms of the MIT License.
- ;;;
- ;;; LF is distributed in the hope that it will be useful,
- ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
- ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ;;; MIT License for more details.
- ;;;
- ;;; You should have received a copy of the MIT License
- ;;; along with LF. If not, see <https://opensource.org/licenses/MIT>.
- (local list (include :list))
- (local iteration (include :iteration))
- (local tbl (include :tbl))
- (local str (include :str))
- {:list list
- :iteration iteration
- :tbl tbl
- :str str}
|