Fork me on GitHub
#clr
<
2019-09-13
>
dotemacs07:09:58

What sogaiu said, to use ClojureCLR you have to run the .exe from the directory. I do something like this:

#!/bin/sh

fullpath=/Users/alex/dev/cljr/install-with-nuget/Clojure.1.9.0/all/net40
exe=Clojure.Main.exe

cd ${fullpath} && mono ${exe}

dotemacs07:09:35

@stefan.van.den.oord it would be great if that was possible, but the last I hear about it is this blog post: http://www.davidykay.com/Clojure-CLR-for-Cross-platform-Native-Mobile-App-Development/ with this repo: https://github.com/DavidYKay/clojure-xamarin If you do make any progress, or find out anything new, please share it. 🙂

Stefan07:09:35

@dotemacs I saw that yes. That repo is full of good intentions 🙂

dotemacs07:09:46

Yes, well put 🙂

Stefan07:09:00

If I get around to trying this, I’ll make sure to report back!

👍 4