diff options
Diffstat (limited to 'src/boot.clj')
-rw-r--r-- | src/boot.clj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/boot.clj b/src/boot.clj index 774bb5b4..b649d531 100644 --- a/src/boot.clj +++ b/src/boot.clj @@ -219,4 +219,8 @@ `(let [~gsym ~x] (try-finally (do (monitor-enter ~gsym) ~@body) - (monitor-exit ~gsym)))))
\ No newline at end of file + (monitor-exit ~gsym))))) + +(defmacro .. + ([x form] `(. ~x ~form)) + ([x form & more] `(.. (. ~x ~form) ~@more)))
\ No newline at end of file |