Skip to content

Commit

Permalink
Move nfnl into a conjure.nfnl.* prefixed space, compile everything
Browse files Browse the repository at this point in the history
Also fix the fact that guile/nrepl wasn't compiling because it was
missing the nfnl header.

Still need to clone bencode to the repo so I can rebuild the bencode
file through include but I'm on a plane lol

Almost have everything nfnl compiling and embedding

Tests hang though and bencode impl won't embed for some reason.

Use relative include for bencode, don't need to mess with paths

Remove nfnl from make deps, we do it from the nfnl repo now

Remove stray files
  • Loading branch information
Olical committed Feb 15, 2025
1 parent 73fd612 commit eb8b6e0
Show file tree
Hide file tree
Showing 138 changed files with 283 additions and 296 deletions.
5 changes: 0 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ default: deps sponsors test

deps:
scripts/dep.sh Olical bencode origin/master
scripts/dep.sh Olical nfnl origin/main
rm -rf lua/nfnl fnl/nfnl
cp -r deps/nfnl/lua/nfnl lua/nfnl
mkdir -p fnl/nfnl
cp -r deps/nfnl/fnl/nfnl/macros* fnl/nfnl

sponsors:
echo "[ ;; Generated by: make sponsors" > fnl/conjure/sponsors.fnl
Expand Down
4 changes: 2 additions & 2 deletions fnl/conjure/buffer.fnl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local nvim (autoload :conjure.aniseed.nvim))
(local core (autoload :nfnl.core))
(local core (autoload :conjure.nfnl.core))
(local text (autoload :conjure.text))

(fn unlist [buf]
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local nvim (autoload :conjure.aniseed.nvim))
(local fennel (autoload :conjure.aniseed.fennel))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/clojure/nrepl/action.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local autoload (require :nfnl.autoload))
(local autoload (require :conjure.nfnl.autoload))
(local a (autoload :conjure.aniseed.core))
(local auto-repl (autoload :conjure.client.clojure.nrepl.auto-repl))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/clojure/nrepl/auto-repl.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/clojure/nrepl/debugger.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local autoload (require :nfnl.autoload))
(local autoload (require :conjure.nfnl.autoload))
(local a (autoload :conjure.aniseed.core))
(local elisp (autoload :conjure.remote.transport.elisp))
(local extract (autoload :conjure.extract))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/clojure/nrepl/init.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local action (autoload :conjure.client.clojure.nrepl.action))
(local auto-repl (autoload :conjure.client.clojure.nrepl.auto-repl))
Expand Down
4 changes: 2 additions & 2 deletions fnl/conjure/client/clojure/nrepl/server.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local autoload (require :nfnl.autoload))
(local autoload (require :conjure.nfnl.autoload))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local config (autoload :conjure.config))
Expand All @@ -11,7 +11,7 @@
(local timer (autoload :conjure.timer))
(local ui (autoload :conjure.client.clojure.nrepl.ui))
(local uuid (autoload :conjure.uuid))
(local fs (autoload :nfnl.fs))
(local fs (autoload :conjure.nfnl.fs))

(fn with-conn-or-warn [f opts]
(let [conn (state.get :conn)]
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/clojure/nrepl/state.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local client (autoload :conjure.client))

(local get
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/clojure/nrepl/ui.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local autoload (require :nfnl.autoload))
(local autoload (require :conjure.nfnl.autoload))
(local a (autoload :conjure.aniseed.core))
(local config (autoload :conjure.config))
(local log (autoload :conjure.log))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/common-lisp/swank.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/fennel/aniseed.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local config (autoload :conjure.config))
Expand Down
14 changes: 7 additions & 7 deletions fnl/conjure/client/fennel/nfnl.fnl
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
(local {: autoload : define} (require :nfnl.module))
(local {: autoload : define} (require :conjure.nfnl.module))
(local ts (autoload :conjure.tree-sitter))
(local config (autoload :conjure.config))
(local nfnl-config (autoload :nfnl.config))
(local nfnl-config (autoload :conjure.nfnl.config))
(local text (autoload :conjure.text))
(local log (autoload :conjure.log))
(local core (autoload :nfnl.core))
(local fennel (autoload :nfnl.fennel))
(local str (autoload :nfnl.string))
(local repl (autoload :nfnl.repl))
(local fs (autoload :nfnl.fs))
(local core (autoload :conjure.nfnl.core))
(local fennel (autoload :conjure.nfnl.fennel))
(local str (autoload :conjure.nfnl.string))
(local repl (autoload :conjure.nfnl.repl))
(local fs (autoload :conjure.nfnl.fs))

(local M
(define :conjure.client.fennel.nfnl
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/fennel/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local afs (autoload :conjure.aniseed.fs))
(local str (autoload :conjure.aniseed.string))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/guile/socket.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/hy/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local extract (autoload :conjure.extract))
(local str (autoload :conjure.aniseed.string))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/janet/netrepl.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/janet/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local stdio (autoload :conjure.remote.stdio))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/julia/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local stdio (autoload :conjure.remote.stdio))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/lua/neovim.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/python/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local extract (autoload :conjure.extract))
(local str (autoload :conjure.aniseed.string))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/racket/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local stdio (autoload :conjure.remote.stdio))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/rust/evcxr.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/scheme/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local stdio (autoload :conjure.remote.stdio))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/snd-s7/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local nvim (autoload :conjure.aniseed.nvim))
(local str (autoload :conjure.aniseed.string))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/client/sql/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local client (autoload :conjure.client))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/config.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local autoload (require :nfnl.autoload))
(local autoload (require :conjure.nfnl.autoload))
(local nvim (autoload :conjure.aniseed.nvim))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/dynamic.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))

(local get-stack-key :conjure.dynamic/get-stack)
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/editor.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local fs (autoload :conjure.fs))
(local nvim (autoload :conjure.aniseed.nvim))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/eval.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local nvim (autoload :conjure.aniseed.nvim))
(local str (autoload :conjure.aniseed.string))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/event.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local nvim (autoload :conjure.aniseed.nvim))
(local a (autoload :conjure.aniseed.core))
(local text (autoload :conjure.text))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/extract.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local nvim (autoload :conjure.aniseed.nvim))
(local nu (autoload :conjure.aniseed.nvim.util))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/extract/searchpair.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))

(local str (autoload :conjure.aniseed.string))
Expand Down
4 changes: 2 additions & 2 deletions fnl/conjure/fs.fnl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local config (autoload :conjure.config))
(local nfs (autoload :nfnl.fs))
(local nfs (autoload :conjure.nfnl.fs))

(local path-sep (nfs.path-sep))

Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/hook.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))

Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/inline.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local config (autoload :conjure.config))

Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/linked-list.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))

(fn create [xs prev]
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/log.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local buffer (autoload :conjure.buffer))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/main.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local mapping (autoload :conjure.mapping))
(local config (autoload :conjure.config))

Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/mapping.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local config (autoload :conjure.config))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/net.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload : define} (require :nfnl.module))
(local {: autoload : define} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))

(import-macros {: augroup : autocmd} :conjure.macros)
Expand Down
File renamed without changes.
53 changes: 53 additions & 0 deletions fnl/conjure/nfnl/macros/aniseed.fnl
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
;; [nfnl-macro]

;; Copied over from Aniseed. Contains all of the def* module macro systems.
;; https://github.com/Olical/aniseed

;; This has been heavily slimmed down from the original implementation, the
;; `(module ...) macro can now ONLY define your module, it can not be used
;; to require dependencies.

;; We had to slim things down because the Fennel compiler no longer supports
;; the weird tricks we were using.

;; In nfnl they are not automatically required, you must use import-macros to
;; require them explicitly when migrating your Aniseed based projects.

;; Avoids the compiler complaining that we're introducing locals without gensym.
(local mod-str :*module*)
(local mod-sym (sym mod-str))

;; Upserts the existence of the module for subsequent def forms.
;;
;; (module foo
;; {:some-optional-base :table-of-things
;; :to-base :the-module-off-of})
(fn module [mod-name mod-base]
`(local
,mod-sym
(let [pkg# (require :package)]
(tset pkg#.loaded ,(tostring mod-name) ,(or mod-base {}))
(. pkg#.loaded ,(tostring mod-name)))))

(fn def- [name value]
`(local ,name ,value))

(fn def [name value]
`(local ,name (do (tset ,mod-sym ,(tostring name) ,value) (. ,mod-sym ,(tostring name)))))

(fn defn- [name ...]
`(fn ,name ,...))

(fn defn [name ...]
`(def ,name (fn ,name ,...)))

(fn defonce- [name value]
`(def- ,name (or ,name ,value)))

(fn defonce [name value]
`(def ,name (or (. ,mod-sym ,(tostring name)) ,value)))

{:module module
:def- def- :def def
:defn- defn- :defn defn
:defonce- defonce- :defonce defonce}
2 changes: 1 addition & 1 deletion fnl/conjure/process.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local nvim (autoload :conjure.aniseed.nvim))
(local str (autoload :conjure.aniseed.string))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/promise.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local nvim (autoload :conjure.aniseed.nvim))
(local uuid (autoload :conjure.uuid))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/netrepl.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local log (autoload :conjure.log))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/nrepl.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local bencode (autoload :conjure.remote.transport.bencode))
(local client (autoload :conjure.client))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/socket.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local log (autoload :conjure.log))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/stdio-rt.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local client (autoload :conjure.client))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/stdio.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local client (autoload :conjure.client))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/stdio2.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local str (autoload :conjure.aniseed.string))
(local client (autoload :conjure.client))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/swank.fnl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(local {: autoload} (require :nfnl.module))
(local {: autoload} (require :conjure.nfnl.module))
(local a (autoload :conjure.aniseed.core))
(local client (autoload :conjure.client))
(local net (autoload :conjure.net))
Expand Down
2 changes: 1 addition & 1 deletion fnl/conjure/remote/transport/bencode/impl.fnl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(include :deps.bencode.bencode)
(include "./deps/bencode/bencode")
Loading

0 comments on commit eb8b6e0

Please sign in to comment.