Anic -- Faster than C, Safer than Java, Simpler than *sh
21–30 of 96 posts
Re: Anic -- Faster than C, Safer than Java, Simpler than *sh
#22Faster than C – this is explained in the FAQ as most C programs being single threaded and ANI being inherently multithreaded. ANIC was posted to HN most of a year ago: http://news.ycombinator.com/item?id=1042122 with much commentary.
People shouldn't make claims like that honestly. It makes be discount the language almost immediately because I know I can't really trust what's written about it on its site. Furthermore, there's tons and tons of parallel C code. Probably more than any other language. Almost any decent C library is reentrant. Many of major C projects (mostly thinking of server software and operating system kernels) are threaded.
Re: Anic -- Faster than C, Safer than Java, Simpler than *sh
#23Faster than C – this is explained in the FAQ as most C programs being single threaded and ANI being inherently multithreaded. ANIC was posted to HN most of a year ago: http://news.ycombinator.com/item?id=1042122 with much commentary.
Re: Anic -- Faster than C, Safer than Java, Simpler than *sh
#24Faster than C – this is explained in the FAQ as most C programs being single threaded and ANI being inherently multithreaded. ANIC was posted to HN most of a year ago: http://news.ycombinator.com/item?id=1042122 with much commentary.
Sorry, I missed it at the time. BTW I wanted to avoid a double submit and I have been looking for some "search" box without success, it is probably obvious once you know where it is, where is it?
Re: Anic -- Faster than C, Safer than Java, Simpler than *sh
#25Faster than C – this is explained in the FAQ as most C programs being single threaded and ANI being inherently multithreaded. ANIC was posted to HN most of a year ago: http://news.ycombinator.com/item?id=1042122 with much commentary.
Sorry, I missed it at the time. BTW I wanted to avoid a double submit and I have been looking for some "search" box without success, it is probably obvious once you know where it is, where is it?
Re: Anic -- Faster than C, Safer than Java, Simpler than *sh
#26Am I the only one thinking this code looks ugly and hacky. I would never code in this.
Re: Anic -- Faster than C, Safer than Java, Simpler than *sh
#27Still reading through, it's definitely piqued my interest. However, in the interest of consistency [as it translates to readability] two issues right away: 1) Get rid of the infix modifier to the filter. The statement is made that in ANI everything flows left to right. The infix operator while providing familiar 1+6->7 notation conflicts with the above flow statement. 1,6+->7 while not immediately familiar is easy to…