You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the commit history babashka 0.6.2 should include the latest addition to babashka.fs namely the function unzip. However when trying to call the function the symbol can't be resolved.
repro
Babashka v0.6.2 REPL.
Use :repl/quit or :repl/exit to quit the REPL.
Clojure rocks, Bash reaches.
user=> (require '[babashka.fs :as fs])
nil
user=> (doc fs/path)
-------------------------
babashka.fs/path
([f] [parent child] [parent child & more])
Coerces f into a Path. Multiple-arg versions treat the first argument as
parent and subsequent args as children relative to the parent.
nil
user=> (doc fs/unzip)
nil
user=> (fs/unzip)
Could not resolve symbol: fs/unzip [at <repl>:4:2]
user=>
expected behavior
Calling unzip should be possible.
The text was updated successfully, but these errors were encountered:
version
0.6.2
platform
Windows 10 Version 1909 (Build 18363.1801) x64
problem
According to the commit history babashka 0.6.2 should include the latest addition to babashka.fs namely the function
unzip
. However when trying to call the function the symbol can't be resolved.repro
expected behavior
Calling
unzip
should be possible.The text was updated successfully, but these errors were encountered: