From 22358947a1291ea8957b4eb05909076a94aedd73 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Wed, 27 Nov 2019 14:19:07 +0100 Subject: [PATCH] docs --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e1a02b72..34910465 100644 --- a/README.md +++ b/README.md @@ -435,11 +435,6 @@ same. Multi-threading is supported (`pmap`, `future`). Differences with Clojure: -- No user defined namespaces. Since this tool focuses on snippets and small - scripts, there hasn't been a need to implement it yet. - -- There is no `ns` macro for the same reason as above. - - No first class vars. Note that you can define and redefine global values with `def` / `defn`, but there is no `var` indirection. @@ -453,7 +448,8 @@ Differences with Clojure: disk. - `require` does not load files; it only provides a way to create different - aliases for included namespaces, which makes it easier to make scripts portable between the JVM and babashka. + aliases for included namespaces, which makes it easier to make scripts + portable between the JVM and babashka. - Interpretation comes with overhead. Therefore tight loops are likely slower than in Clojure on the JVM.