1
0
mirror of https://github.com/janet-lang/janet synced 2025-09-03 19:38:04 +00:00

Add some testing to the bundle/ module.

This commit is contained in:
Calvin Rose
2024-05-25 12:39:46 -05:00
parent 46bdcece4d
commit 7d8af2f99a
10 changed files with 120 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
@{
:dependencies ["spork"]
:dependencies ["sample-dep1" "sample-dep2"]
}

View File

@@ -1,3 +1,7 @@
(import dep1)
(import dep2)
(defn myfn
[x]
(+ x x))
(def y (dep2/function x))
(dep1/function y))