So, I was looking at this thread http://dis.4chan.org/read/prog/1183997706/1-40 and all the various language bashing threads and was wondering... What, in the opinions of anonymous and 4chan in general, would make a perfect programming language? I am interested in both syntax and features and general flames, since they entertain me.
Name:
Anonymous2007-07-14 4:27 ID:Gv9jVVIu
One thing that I read when working with Java was that it was still possible to create a memory leak if you had a circular reference since the GC would look at the one instance, see the other instance still had a reference to it and not deallocate it, and same when it looked at the other instance, even though no active objects had references to either object. Is this a general concern among garbage collection or just another example of Java being braindead?