I am the author of IronScheme. I am not really sure how to answer your question, but will try :)
IronScheme firstly tries to implement Scheme (R6RS specifically), with the secondary objective being CLR interoperability.
Compared to Clojure (focusing on the their bad points), IronScheme won't:
- give you CLR runtime exceptions; IronScheme uses Scheme's exception handling
- give you 'infinite' stacktraces; IronScheme is properly tail recursive
- be hard to setup; just extract to directory and go
- take long to start up; IronScheme (when ngen'd) only takes 0.1 seconds to start the REPL
- be ambiguous; IronScheme implements a standardized specification
Unfortunately where Clojure wins is:
- Documentation
- Frameworks and libraries
- User community
This is worrying for IronScheme, as the last 3 mentioned is very much a chicken-egg scenario. Personally, I tend to only create libraries when I need them, and with a very tiny user community, there is not much contribution from users besides bug reports. I would love a bigger user community.
As for support, I normally help users as fast I can. This evidence can be seen from my response times on the IronScheme discussion boards. Also, bugs are normally fixed as soon as they have been identified.
As for stability, the codebase is pretty mature, and currently only bug fixes and optimizations are the only code additions.
As for usability, if you are familiar with the .NET framework, you can do pretty much anything with IronScheme as you can with any other .NET language; it may be harder or easier depending on how much you are willing to abstract into more Scheme-like idioms. Things are very easy to write in IronScheme; for example my entire MVC framework is barely 400 lines of Scheme code, thanks to tapping into ASP.NET (I certainly do not like re-inventing the wheel).
Feel free to ask for clarifications if the answer is not enough. Demian does make good points in terms of maintainability too.
Regards
leppie