mirror of
https://github.com/janet-lang/janet
synced 2024-11-08 09:49:58 +00:00
8 lines
95 B
Plaintext
8 lines
95 B
Plaintext
(import dep1)
|
|
(import dep2)
|
|
|
|
(defn myfn
|
|
[x]
|
|
(def y (dep2/function x))
|
|
(dep1/function y))
|