Nu: Lisp on Objective C. (think Clojure for Cocoa)(github.com)
github.com
Nu: Lisp on Objective C. (think Clojure for Cocoa)
http://github.com/timburks/nu
26 comments
If you're interested in Lisp, Objective C and Cocoa, you might also be interested in Clozure[1], a Common Lisp implementation which provides complete access to Cocoa through its Objective C bridge[2].
[1] http://ccl.clozure.com
[2] http://trac.clozure.com/ccl/wiki/Cocoa
-- Auto suggestion machine at your service
[1] http://ccl.clozure.com
[2] http://trac.clozure.com/ccl/wiki/Cocoa
-- Auto suggestion machine at your service
I don't think the "clojure for cocoa" description is apt.
1. All the examples I saw on the git tutorials we're basically just imperative programming with parentheses instead of ObjC's brackets (actually some of the examples remind me more of Smalltalk).
2. Clojure seems to be finding a niche in the web app world, whereas Nu is targeted at Cocoa app programming, i.e. end-user GUI apps.
1. All the examples I saw on the git tutorials we're basically just imperative programming with parentheses instead of ObjC's brackets (actually some of the examples remind me more of Smalltalk).
2. Clojure seems to be finding a niche in the web app world, whereas Nu is targeted at Cocoa app programming, i.e. end-user GUI apps.
[deleted](3)
I'm the OP, and I'm not really sure what the source of let-down is here.
Nu has closures, anonymous functions, supports currying etc. It uses the Cocoa classes and they claim it can even be compiled onto the iPhone.
So while the examples in git may be "imperative" I would guess its only because they are trying to show how to be interoperable with Cocoa objects which, not being functional, causes imperative constructs to creep back into your code. The same thing happens when you try to use existing Java objects in Clojure. This seems to be a limitation only of the examples and not of the language itself.
Nu has closures, anonymous functions, supports currying etc. It uses the Cocoa classes and they claim it can even be compiled onto the iPhone.
So while the examples in git may be "imperative" I would guess its only because they are trying to show how to be interoperable with Cocoa objects which, not being functional, causes imperative constructs to creep back into your code. The same thing happens when you try to use existing Java objects in Clojure. This seems to be a limitation only of the examples and not of the language itself.
Lisp for Cocoa would have been a better title.
Clojure is quite a different Lisp, and to say that this is "Clojure for Cocoa" implies it has something in common with Clojure other than also being a member of the Lisp family, which it really doesn't.
Clojure is very functional, Nu is not. Clojure's language is designed to make it safe and simple to write multithreaded code. Nu is just an imperative Lisp with smalltalk syntax so that it can interface with Cocoa/Objective-C. Clojure takes a departure from all Lisps by treating lists as just any other datastructre, and therefore has literal syntax for arrays, hashtables, and sets, Nu has no such thing. Clojure places a huge emphasis on "data abstractions" like Seqs and builds its core functions around that. Clojure is compiled, Nu is interpreted, etc...
Don't get me wrong, I think Nu is really cool, but I can't think of a single thing that Nu shares with Clojure that is exclusive to Clojure and not Lisp.
Clojure is quite a different Lisp, and to say that this is "Clojure for Cocoa" implies it has something in common with Clojure other than also being a member of the Lisp family, which it really doesn't.
Clojure is very functional, Nu is not. Clojure's language is designed to make it safe and simple to write multithreaded code. Nu is just an imperative Lisp with smalltalk syntax so that it can interface with Cocoa/Objective-C. Clojure takes a departure from all Lisps by treating lists as just any other datastructre, and therefore has literal syntax for arrays, hashtables, and sets, Nu has no such thing. Clojure places a huge emphasis on "data abstractions" like Seqs and builds its core functions around that. Clojure is compiled, Nu is interpreted, etc...
Don't get me wrong, I think Nu is really cool, but I can't think of a single thing that Nu shares with Clojure that is exclusive to Clojure and not Lisp.
Bad title.
From the Nu website: "Its syntax comes from Lisp, but Nu is semantically closer to Ruby than Lisp."
So would be allowed on iOS given the 3.3.1 clause forbidding alternative languages?
This is a question I'm very interested to hear an answer to. I've started dabbling with Objective-C and I don't like it much; it would be very sweet if I could write apps for the i{Pad,Phone,*} in a Lisp-like like language.
Well, the revised version doesn't fully forbid them. It would be interesting to see what you must go through to get Apple's approval. I would bet people using Lua are pretty well set due to its use in video games.
The `nuke' name for the build tool is so cool!
Tim Burk has really done some great work for Cocoa programmers and very informative to follow on twitter @timburks.
I can't wait for the Arc on LLVM! It is more portable than JVM ^_^
Well, the man certainly puts his money where his mouth is. He has 40+ projects on github, the majority of them written in Nu.
http://github.com/timburks
If it's good enough for him, and let's him get work done, who am I to complain.