From 75e98123df330dc4c6e765fc3e6b4d4f56adb6ba Mon Sep 17 00:00:00 2001 From: hellerve Date: Tue, 21 Apr 2020 10:36:21 +0200 Subject: [PATCH] published new version --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c6ce8b5..e39745d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ is a simple module for defining C code inside Carp code. ## Installation ```clojure -(load "https://veitheller.de/git/carpentry/inline-c@0.0.1") +(load "https://veitheller.de/git/carpentry/inline-c@0.0.2") ``` ## Usage @@ -16,7 +16,7 @@ express those things that are just kind of awkward in Carp (like complex bit-twiddling) without having to include a helper every time. ```clojure -(load "https://veitheller.de/git/carpentry/inline-c@0.0.1") +(load "https://veitheller.de/git/carpentry/inline-c@0.0.2") (inline-c "int count_set_bits(int n) { int count = 0;