lispy-fennel.fnl 815 B

123456789101112131415161718192021222324252627
  1. ;;; Lispy-Fennel (LF) --- The Functional Fennel Library
  2. ;;;
  3. ;;; Copyright (C) 2020 Kevin "The Nuclear" Bloom <nuclearkev@dragora.org>
  4. ;;;
  5. ;;; This file is part of LF.
  6. ;;;
  7. ;;; LF is free software: you can redistribute it and/or modify
  8. ;;; it under the terms of the MIT License.
  9. ;;;
  10. ;;; LF is distributed in the hope that it will be useful,
  11. ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ;;; MIT License for more details.
  14. ;;;
  15. ;;; You should have received a copy of the MIT License
  16. ;;; along with LF. If not, see <https://opensource.org/licenses/MIT>.
  17. (local list (include :list))
  18. (local iteration (include :iteration))
  19. (local tbl (include :tbl))
  20. (local str (include :str))
  21. {:list list
  22. :iteration iteration
  23. :tbl tbl
  24. :str str}