More clojure 11 vars

This commit is contained in:
Michiel Borkent 2022-01-25 11:02:03 +01:00
parent c7cc5663cb
commit e95c4dd37d
2 changed files with 4 additions and 1 deletions

View file

@ -216,6 +216,8 @@
'random-uuid (sci/copy-var random-uuid clojure-core-ns)
'NaN? (sci/copy-var NaN? clojure-core-ns)
'infinite? (sci/copy-var infinite? clojure-core-ns)
'iteration (sci/copy-var iteration clojure-core-ns)
'abs (sci/copy-var abs clojure-core-ns)
'StackTraceElement->vec (sci/copy-var StackTraceElement->vec clojure-core-ns)
'memfn (sci/copy-var memfn clojure-core-ns)
'into-array (sci/copy-var into-array clojure-core-ns)}

View file

@ -38,4 +38,5 @@
'*sh-env* sh-env
'with-sh-dir (sci/copy-var shell/with-sh-dir shell-ns)
'with-sh-env (sci/copy-var shell/with-sh-env shell-ns)
'sh (sci/copy-var sh shell-ns)})
'sh (sci/copy-var sh shell-ns)
'launch (sci/copy-var shell/launch shell-ns)})