Re: First post: how to mimic a Java List with types?

2020-08-14 Thread Jesús Gómez
Why not to Java-Interop with that Interface and those Classes directly, the
same way you use them in Java?

El jue., 13 ago. 2020 a las 22:54, Jack Park ()
escribió:

> The problem:
>
> In Java, I have an interface *IInferrable* which is basically  boolean
> eval();
>
> Any Java object which extends IInferrable, no matter what it is, will
> answer to eval() and return a boolean.
> The idea lies at the heart of an inference engine.
>
> But, I also define a class *AndList* which implements IInferrable and
> extends java.util.ArrayList
>
> So, AndList, and its sibling OrList behave just like a List object, but
> also will answer to eval() by running the collection and dealing with what
> each element returns when it, too, is eval()'d.
>
> I'd really love to discover how to pull that off in Clojure.
>
> Many thanks in advance. -Jack
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/clojure/3e2ffc86-0e4f-4c0c-92c3-58e0848d5ba7o%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/CAO9z-97N15E_17FRkDN_gbneXfkMkrS615RV5UwGMf3%2Bos%3DSLQ%40mail.gmail.com.


Re: Strange with "clj" tool

2019-07-31 Thread Jesús Gómez
Maybe there is something in the `deps.edn` inside the `simpro-scene` folder
that is changing the `path` in a way that it can't find `clojure.main`.

El mié., 31 jul. 2019 a las 8:46, ru () escribió:

> Hi,
>
> The tool "clj" starts normally in any folder, except in one, that I cloned
> from github:
>
> [image: error.png]
>
>
> Please, explain me this behavior.
>
>
> Sincerely,
>
>   Ru
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/clojure/3d705af9-9ed9-4142-871f-303a91e80236%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/CAO9z-96Pg5-H3ow2zUWzeE6Gjy7ZajPWXNkQZCx4-ODJQZ%3DP9g%40mail.gmail.com.


Re: [ANN] Morphe: an aspect-oriented tool

2019-06-25 Thread Jesús Gómez
After seeing the final product in your REDME, i.e:

(m/defn ^{::m/aspects [timed logged traced]} do-a-thing [x stuff]
(.doThatThing x stuff))

My question would be: Is it possible that the final product would had use
`defn` instead, given that the namespaced tag has all the needed
information? e.g

(defn ^{::m/aspects [timed logged traced]} do-a-thing [x stuff]
(.doThatThing x stuff))


El lun., 24 jun. 2019 a las 14:33, Timothy Dean ()
escribió:

> An aspect-oriented library for Clojure
>
> Most aspect-oriented patterns I have seen in Clojure work one of two ways:
> first, via rebinding var roots dynamically; or second, via functional
> composition. While both of these patterns are perfectly adequate for many
> use cases, they are not (IMO) perfect solutions for all. If I wish to avoid
> dynamic rebinding or if I do not wish to eschew built-in language/tooling
> features (fn arglist metadata, docstrings, etc.), then typical patterns
> won't work.
>
> The following library provides an extension to Clojure's built-in `defn`
> form that allows you to tag your function definitions with compile-time
> macro transformations. It also provides very simple macro constructors for
> the most common use cases. It's not intended to replace dynamic
> decorations  or functional
> composition , but to provide
> another useful tool in the box. The library's motivation is explained with
> a simple example here
> , and a
> more detailed comparison with other Clojure idioms is found here
> .
>
> https://github.com/galdre/morphe
>
> I've quite enjoyed building and using this library over the last few
> years, and I hope others can find it useful as well! I recently updated it
> to work with Clojurescript (but not self-hosted Clojurescript). This was an
> adventure, and it's quite possible there are some issues with the CLJS
> implementation that I have not yet discovered.
>
> ~Timothy Dean
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/clojure/74bda940-4f12-4bcb-b1d7-d21380a62b14%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/CAO9z-97KufcHBCEez2n_Cp1oL-_1u2HkJi%2Bbx04%2BLmaUz3nFAQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: No "clojure --version" switch

2019-05-08 Thread Jesús Gómez
Just as an example of how other language manage that difference between
REPL and the Interpreter: Ruby...

 $ irb -v
 irb 0.9.6(09/06/30)

 $ ruby -v
 ruby 2.1.3p242 (2014-09-19 revision 47630) [x86_64-linux]



El mié., 8 may. 2019 a las 0:48,  escribió:

> Or just type:
>
>
>
>   clojure
>
> or:
>
>   clj
>
>
>
> And it announces the version and starts a REPL – which is documented usage.
>
>
>
> I think one of the “issues” here is that clojure / clj are scripts that
> have an inherent version behind them (clojure -Sdescribe) but the version
> of Clojure that they run with is context-dependent. deps.edn can specify
> any Clojure back to … Clojure 1.1 it seems:
>
>
>
> seanc@DESKTOP-QU2UJ1N:~$ clojure -Sdeps '{:deps {org.clojure/clojure
> {:mvn/version "1.1.0"}}}'
>
> Clojure 1.1.0
>
> user=> *clojure-version*
>
> {:major 1, :minor 1, :incremental 0, :qualifier ""}
>
> user=>
>
>
>
> Given that, I think that a –version option on clojure would be misleading
> since it is not reporting the version of the clojure / clj scripts.
>
>
>
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>
>
> *From: *Alan Thompson 
> *Sent: *Tuesday, May 7, 2019 4:50 PM
> *To: *clojure 
> *Subject: *No "clojure --version" switch
>
>
>
> Seems we should have the "--version" switch that is pretty universal.
> Right now, the best one can do is
>
>
>
> > clojure --eval "(clojure-version)"
>
> "1.10.0"
>
>
>
> which is hard for a new user to figure out.  Jira ticket?
>
>
>
> Alan
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/clojure/CAN67zA0yrhNhfx2vwH%3D-oy1kbJPA0EyGwwvg%2BFX3kyV4tgz3Qg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/clojure/5cd24a6f.1c69fb81.bb91f.699f%40mx.google.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/CAO9z-96Syo7PZrZUbV07iRHd3qUf4_SWc70%2BS2-E4%3DSmzSMYgg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: More info on Rich Hickeys ideas on Map types from "Maybe Not"

2019-04-24 Thread Jesús Gómez
El vie., 19 abr. 2019 a las 13:25, Henning Sato von Rosen (<
henning.von.ro...@gmail.com>) escribió:

> ...
>
>1. *Non-existence expressed by omisson of keyword.* Non-existence of a
>value in a key/value-pair must be expressed by omission of the whole
>key/value pair, not by `null` as a value.
>...
>
> Just to add that I understand null should be interpreted as "I don't know
the value", and not as the non-existance of a value. "I don't know" is a
superset that includes the non-existance.

In that sense, omitting the keyword could be interpreted as "I don't know"
instead of "omission" only. Yet, not sure if it was Ritchie intention.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: No matching field found: length for class byte array

2019-03-17 Thread Jesús Gómez
I just lost 1 hour of my life for this.

Thank you.

El miércoles, 1 de julio de 2015, 22:37:25 (UTC-2:30), Colin Taylor 
escribió:
>
> Yep you're in a cast of confused hundreds? thousands? here. It's quickly 
> googlable but I'd still prefer to see my (rejected) humane suggestion in 
> the error. 
> While I don't advocate coding lessons in error messages, this really is an 
> anomalous Java detail leaking through. 
>
> user=> (.length (int-array 2)) 
> IllegalArgumentException No matching field found: length for class [I, use 
> alength function for array length

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Plain clojure 1.9 fails with Could not locate ... clojure/spec/alpha.clj on classpath. in Kubuntu 18.04

2018-05-21 Thread Jesús Gómez
The simplest workaround I found in the bug report you  have shared here, is
to configure Java to change the keystore type from pkcs12 to jks by simply
editing the file `/etc/java-11-openjdk/security/java.security` and changing
"keystore.type=pkcs12" to "keystore.type=jks" as it is explained in the
fifth comment[1].

And then, follow the instructions given by Peter:

$ sudo dpkg --purge --force-depends ca-certificates-java
$ sudo apt-get install ca-certificates-java

Then both lein and clj works well.

I have to remember to rollback this change when the bug is fixed in Ubuntu.

Now I understand this is an Ubuntu exclusive problem, and I appreciate your
help. Thank you.

https://bugs.launchpad.net/ubuntu/+source/ca-certificates-java/+bug/1739631/comments/5

2018-05-21 17:57 GMT-02:30 Justin Smith :

> oh, it seems that fix is for yet another ubuntu ca-certs java bug, I
> hadn't expected there were more
>
> On Mon, May 21, 2018 at 1:25 PM Andy Fingerhut 
> wrote:
>
>> Thanks, Justin.
>>
>> I tried the commands you suggested on an Ubuntu 18.04 LTS system, and
>> 'lein repl' still fails the same way afterwards when using Ubuntu's OpenJDK
>> installation (and still succeeds when using Oracle's JDK installation).
>>
>> Andy
>>
>> On Mon, May 21, 2018 at 1:04 PM, Justin Smith 
>> wrote:
>>
>>> I should have been more specific. Just uninstalling leaves old configs
>>> around, and fixing this requires a full purge of the package.
>>>
>>> these are my steps on a debian system:
>>>
>>> $ sudo dpkg --purge --force-depends ca-certificates-java
>>> $ sudo apt-get install ca-certificates-java
>>>
>>>
>>> sourced from this stackoverflow answer
>>> https://stackoverflow.com/a/33440168
>>>
>>> On Mon, May 21, 2018 at 12:28 PM Andy Fingerhut <
>>> andy.finger...@gmail.com> wrote:
>>>
>>>>
>>>> Jesús:
>>>>
>>>> Agreed that this issue is frustrating.  It doesn't necessarily help you
>>>> here, but realize that this issue appears like it might be unique to Ubuntu
>>>> 18.04's OpenJDK installations.
>>>>
>>>> This issue did not occur with earlier versions of Ubuntu that I am
>>>> aware of.
>>>>
>>>> Andy
>>>>
>>>> On Mon, May 21, 2018 at 10:29 AM, Jesús Gómez  wrote:
>>>>
>>>>> I followed the Getting Started guide and nothing worked well, except
>>>>> for the boot with nix installation.
>>>>>
>>>>> The clj tools Linux instructions failed the same way the lein one
>>>>> failed: Error with some certs [1]
>>>>> I've been told that this problem could be solved if I install Oracle
>>>>> Java instead of using OpenJDK. I don't want to do that.
>>>>>
>>>>> I avoided the local build instructions because it was going to require
>>>>> maven. I don't want to use it for now.
>>>>>
>>>>> So, for now I'm working with the Clojure 1.8 jar.
>>>>>
>>>>> I must say, Clojure is a good language, but the tooling is awful, not
>>>>> userfriendly, not beginers friendly. Maven is a beast, is the only
>>>>> thing had keped me away of Java for years, and now I must live with
>>>>> it, Voluntarily (I'm learning Clojure not because the work, but
>>>>> because I like it too much).
>>>>>
>>>>> Probably I should try Clojurescript instead.
>>>>>
>>>>> Thank you.
>>>>>
>>>>> [1]
>>>>> Could not transfer artifact
>>>>> clojure-complete:clojure-complete:jar:0.2.4 from/to central
>>>>> (https://repo1.maven.org/maven2/): java.lang.RuntimeException:
>>>>> Unexpected error: java.security.InvalidAlgorithmParameterEx
>>>>> ception: the trustAnchors parameter must be non-empty
>>>>> .
>>>>> .
>>>>> .
>>>>>
>>>>>
>>>>> 2018-05-21 14:40 GMT-02:30 Alex Miller :
>>>>> > As of Clojure 1.9, the Clojure jar depends on two additional
>>>>> libraries
>>>>> > (spec.alpha and core.specs.alpha). Using only the clojure jar is
>>>>> thus not
>>>>> > sufficient.
>>>>> >
>>>>> > There are several ways to handle this, as described on the
>>>>> > https://clojure.or

Re: Plain clojure 1.9 fails with Could not locate ... clojure/spec/alpha.clj on classpath. in Kubuntu 18.04

2018-05-21 Thread Jesús Gómez
I followed the Getting Started guide and nothing worked well, except
for the boot with nix installation.

The clj tools Linux instructions failed the same way the lein one
failed: Error with some certs [1]
I've been told that this problem could be solved if I install Oracle
Java instead of using OpenJDK. I don't want to do that.

I avoided the local build instructions because it was going to require
maven. I don't want to use it for now.

So, for now I'm working with the Clojure 1.8 jar.

I must say, Clojure is a good language, but the tooling is awful, not
userfriendly, not beginers friendly. Maven is a beast, is the only
thing had keped me away of Java for years, and now I must live with
it, Voluntarily (I'm learning Clojure not because the work, but
because I like it too much).

Probably I should try Clojurescript instead.

Thank you.

[1]
Could not transfer artifact
clojure-complete:clojure-complete:jar:0.2.4 from/to central
(https://repo1.maven.org/maven2/): java.lang.RuntimeException:
Unexpected error: java.security.InvalidAlgorithmParameterEx
ception: the trustAnchors parameter must be non-empty
.
.
.


2018-05-21 14:40 GMT-02:30 Alex Miller :
> As of Clojure 1.9, the Clojure jar depends on two additional libraries
> (spec.alpha and core.specs.alpha). Using only the clojure jar is thus not
> sufficient.
>
> There are several ways to handle this, as described on the
> https://clojure.org/guides/getting_started page.
>
> 1. Use the new command line clj tools (linux install instructions on that
> page) - this will fetch the deps for you.
> 2. Do a local build into a single standalone jar (note this is a custom jar
> containing deps and is different than just the artifact you downloaded).
> 3. Use a build tool like leiningen or boot that will fetch the deps for you.
> 4. Download clojure and its deps manually and build your own custom
> classpath. (not recommended)
>
>
> On Monday, May 21, 2018 at 11:17:37 AM UTC-5, Jesús Gómez wrote:
>>
>> Simply: 1.7 works but 1.9 not.
>>
>> Test:
>>
>> $ # Download Clojure 1.7, 1.8 and 1.9 jars
>> $ seq 7 9 | xargs -L1 -I% wget
>> http://repo1.maven.org/maven2/org/clojure/clojure/1.%.0/clojure-1.%.0.jar
>> $ seq 7 9 | xargs -L1 -I% java -jar clojure-1.%.0.jar -e '"1.%.0 is
>> Working"'
>> "1.7.0 is Working"
>> "1.8.0 is Working"
>> Exception in thread "main" java.lang.ExceptionInInitializerError
>> ...
>> Caused by: java.io.FileNotFoundException: Could not locate
>> clojure/spec/alpha__init.class or clojure/spec/alpha.clj on classpath.
>> ...
>>
>> I've been trying to learn Clojure, so I've installed it in many ways:
>>
>>  * Lein - Not working due some SSL credential
>>  * boot vian nix - Working but ... I don't remember the why already...
>> something related with CIDR?... not important for this post anyways
>>  * via apt - Working but I can't make a simple clojure -m hello to work
>>
>> So I tried to understand the basics (No maven, no 3rd parties, etc.) and
>> found the mentioned problem.
>>
>> I was expecting it to work flawless and to not be affected on what I got
>> already installed in my system, but probably is the fact I installed clojure
>> via APT, which installed 1.9.0, that is causing the jar for 1.9.0 to fail
>> and not the others.
>>
>> In any case... 1.9.0 jar is not working for me.
>>
>> Thank you.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Plain clojure 1.9 fails with Could not locate ... clojure/spec/alpha.clj on classpath. in Kubuntu 18.04

2018-05-21 Thread Jesús Gómez
Simply: 1.7 works but 1.9 not.

Test:

$ # Download Clojure 1.7, 1.8 and 1.9 jars
$ seq 7 9 | xargs -L1 -I% wget 
http://repo1.maven.org/maven2/org/clojure/clojure/1.%.0/clojure-1.%.0.jar
$ seq 7 9 | xargs -L1 -I% java -jar clojure-1.%.0.jar -e '"1.%.0 is 
Working"'
"1.7.0 is Working"
"1.8.0 is Working"
Exception in thread "main" java.lang.ExceptionInInitializerError
...
Caused by: java.io.FileNotFoundException: Could not locate 
clojure/spec/alpha__init.class or clojure/spec/alpha.clj on classpath.
...

I've been trying to learn Clojure, so I've installed it in many ways:

 * Lein - Not working due some SSL credential
 * boot vian nix - Working but ... I don't remember the why already... 
something related with CIDR?... not important for this post anyways
 * via apt - Working but I can't make a simple clojure -m hello to work

So I tried to understand the basics (No maven, no 3rd parties, etc.) and 
found the mentioned problem.

I was expecting it to work flawless and to not be affected on what I got 
already installed in my system, but probably is the fact I installed 
clojure via APT, which installed 1.9.0, that is causing the jar for 1.9.0 
to fail and not the others.

In any case... 1.9.0 jar is not working for me.

Thank you.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.