Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Programming IT Technology

Boost 1.36 Released 166

AndrewStephens writes "Good news for C++ programmers: Boost 1.36 has been released with 4 new libraries (including very useful exception templates) and a host of updates. In particular, boost.asio (the cross platform AsyncIO library) has seen major additions and now supports asynchronous disk operations on Windows. Almost every modern C++ codebase uses Boost somewhere, and many of its features find their way into the official language specifications."
This discussion has been archived. No new comments can be posted.

Boost 1.36 Released

Comments Filter:
  • Really appreciate it (Score:2, Interesting)

    by amrik98 ( 1214484 )
    Boost made one of my cross-platform projects extremely easy to write; wrapping network functions to account for differences between Windows and Linux was not fun.
    • by j00r0m4nc3r ( 959816 ) on Sunday August 17, 2008 @10:04PM (#24640301)
      Easy to write? Yes. How about maintain? Every instance I've encountered Boost has been a nightmare. Boost tends to encourage the template swamp, that miserable wretched pile of crap which you end up with when people overuse templates and fail to properly comment their code. You can end up with some serious convoluted shit pretty easily with Boost. Eventually you learn it and can decipher it, but that means that every single person on the team, and all newcomers need to waste time getting up to speed on a single 3rd party library. 99% of the time people use Boost for things they really shouldn't just because it's there. It also tends to encourage over-engineering of systems because of the multitude of complex tools available. It's not to say that Boost isn't nice or has it's uses, but people should be very cautious in how they use it.
  • Use of Boost? (Score:3, Insightful)

    by Anonymous Brave Guy ( 457657 ) on Sunday August 17, 2008 @03:56PM (#24637341)

    Almost every modern C++ codebase uses Boost somewhere

    [Citation needed]

    Boost is created and used by a highly vocal minority of C++ supergeeks. You can play with the definition of "modern", but it's only been in the recent past that Boost even compiled on more than the bleeding edge platforms. Most of the C++ projects I've worked on professionally are still worrying about whether to allow non-trivial use of templates or how to avoid screwing up exceptions, never mind trying to fight through the mess that is getting Boost installed and running these days and spending time getting lawyers to review the licensing terms.

    • Re: (Score:3, Informative)

      by eddy ( 18759 )

      While I agree that it's a bit pissy to imply that if you're not using boost in your c++ project, you're not 'modern', neither installation nor license ought to be much of an issue. The license is as clear cut as it can be:

      Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works

    • I consider that really sad. For the most part, since about 2004 or 2005 compilers have been perfectly fine for Boost. If most shops are still wondering about this, most shops are using dreadfully old development tools.

      That being said, I haven't done any really serious C++ development work since early 2006. I now consider C++ to be the language to go to when Python is just too slow for something. And for that there's Boost.Python [boost.org].

      Though, I'm starting to get interested in intensive parallelization and Pyt

      • How about Jython and use java.lang.Thread?
      • by jgrahn ( 181062 )

        I consider that really sad. For the most part, since about 2004 or 2005 compilers have been perfectly fine for Boost. If most shops are still wondering about this, most shops are using dreadfully old development tools.

        Not every environment looks like yours.

        Where I live, 2005 is very recently, and compilers which were bleeding edge then are still not the only ones we use. God knows how old Sun's compiler is, or what kind of commitment they have to the C++ language ... I'm happy if I can work with a code ba

    • Re: (Score:3, Insightful)

      by Anonymous Coward

      why is this bullshit even getting modded 5 Insightful? It's pure flamebait! Most half-decent compilers don't have problems with boost, the license consists of 5 sentences and .... how exactly can you screw up the installation of a mostly header-only library?

      • Most half-decent compilers don't have problems with boost

        Ah, the no true Scotsman argument.

        Unfortunately, the reality is that compilers outside of the mainstream ones like Visual C++ or GCC have only reached the level of support required for much of the wizardry in Boost relatively recently. If you're working on portable code and your project is more than a couple of years old, you are unlikely to have been able to use Boost when you started it.

        the license consists of 5 sentences

        That doesn't matter. In some businesses, including almost all large ones in my experience, any use of external software

        • Unfortunately, the reality is that compilers outside of the mainstream ones like Visual C++ or GCC have only reached the level of support required for much of the wizardry in Boost relatively recently. If you're working on portable code and your project is more than a couple of years old, you are unlikely to have been able to use Boost when you started it.

          It is always risky using a non-mainstream compiler for a low-level language like C or C++. The advantage of such languages is that you get good control o

    • Unless you are using one of the few parts of boost that require libraries, "installing boost" means copying it somewhere and putting a "-I" line that points to it in your build.

      The licensing terms are themselves hardly cryptic.

    • Re: (Score:3, Funny)

      by forkazoo ( 138186 )

      Boost is created and used by a highly vocal minority of C++ supergeeks. You can play with the definition of "modern", but it's only been in the recent past that Boost even compiled on more than the bleeding edge platforms. Most of the C++ projects I've worked on professionally are still worrying about whether to allow non-trivial use of templates or how to avoid screwing up exceptions, never mind trying to fight through the mess that is getting Boost installed and running these days and spending time gettin

    • You can play with the definition of "modern", but it's only been in the recent past that Boost even compiled on more than the bleeding edge platforms.

      Anyone who had seen Boost source code knows that there are plenty of old hacks and workarounds in it specifically to make it work (to some documented extent) on such archaic compilers as VC6 and g++ 2.95.

      Most of the C++ projects I've worked on professionally are still worrying about whether to allow non-trivial use of templates or how to avoid screwing up ex

      • Re: (Score:3, Interesting)

        Anyone who had seen Boost source code knows that there are plenty of old hacks and workarounds in it specifically to make it work (to some documented extent) on such archaic compilers as VC6 and g++ 2.95.

        Sure, but those are by far the biggest targets. How many little hacks were in there to support the native compilers on IBM, Sun or HP workstations, or even older Macs before GCC took off there?

        Sounds like the kind of people who might be surprised that C++ is already out of draft for some time, then.

        You judge too quickly. The problem isn't a lack of understanding; some of the people I'm thinking of are among the smartest C++ hackers I've ever met, the kind of people who have been following the C++ newsgroups since some way back into the last century, been to their fair share of ACCU conferences, even filed the od

    • Re:Use of Boost? (Score:4, Insightful)

      by immcintosh ( 1089551 ) <slashdot@ianmcin ... .org minus punct> on Monday August 18, 2008 @01:17PM (#24647619) Homepage

      Boost is created and maintained by, among other people, the people who created and maintained the C++ STL.

      If by "on more than the bleeding edge platforms" you mean "on something other than MSVC," then yes. Microsoft's compiler was tremendously shitty when it came to standards conformance until .NET 2003 edition (I believe). Not to mention that only applies to the more esoteric libraries (like lambda functions and spirit), and boost is quite modular so you could still use the parts that did work.

      never mind trying to fight through the mess that is getting Boost installed and running these days and spending time getting lawyers to review the licensing terms

      You're definitely a Windows developer, aren't you? You're just suffering from the fact that Boost isn't really built with or for MSVC, and the Windows development process is very non-standard with respect to every other OS out there. On my system installing boost is a process that consists of all the "mess" of executing ONE terminal command ('pacman -S boost' and when it gets done Boost is installed and ready to use).

      As for the licensing terms, this [boost.org] is the boost software license. It is three (short) paragraphs long. Stick to the libraries that are covered by that license (most of them) and you won't have any trouble. If you need more libraries than that, I'm not aware of any that have meaningfully complex licenses.

      Should I mention the fact that boost is the code base for much of the additions to the next generation of the C++ STL? I know templates can be big and scary, but really...

      • Boost is created and maintained by, among other people, the people who created and maintained the C++ STL.

        Well, yes and no. Although Boost was begun by members of the C++ Standards Committee Library Working Group, participation has expanded to include thousands of programmers from the C++ community at large. [boost.org]

        And of course, the STL was originally developed independent of C++ by Alex Stepanov and Meng Lee. When Stepanov was first throwing around the underlying ideas, C++ didn't even have templates yet [sgi.com].

        If by "on more than the bleeding edge platforms" you mean "on something other than MSVC," then yes. Microsoft's compiler was tremendously shitty when it came to standards conformance until .NET 2003 edition (I believe).

        Your prejudice is showing. Visual C++ has pretty consistently been among the most standard-compliant compilers si

        • Well, yes and no. Although Boost was begun by members of the C++ Standards Committee Library Working Group, participation has expanded to include thousands of programmers from the C++ community at large.

          Absolutely. It's good to have more people contributing.

          Your prejudice is showing. Visual C++ has pretty consistently been among the most standard-compliant compilers since forever. It fell behind a little in the early 2000s, since VC++6 was actually released before the C++ standard was finalised, but reme

  • by Anonymous Coward on Sunday August 17, 2008 @04:30PM (#24637679)

    Boost is a great example of what a bloated, backward language C++ has become. It relies on complex intricacies from the standard that are difficult for compiler writers to implement correctly and robustly and without bugs. As a result, Boost itself is not very portable. Either it works on your platform and compiler, or it sort of works, or it doesn't.

    Boost--and template metaprogramming in general--is a great exercise in intellectual masturbation. They identified a bunch of useful functionality that isn't supported by the language. Rather than design a new language that does support that functionality, or build external tools to provide it, they contort the template semantics of the language in order to try and squeeze that functionality out of nothing.

    Well, template metaprograms are crap. They're nigh undebuggable, they produce unreadable error messages, they take forever to compile, and most C++ programmers don't know how to write (or even read) their implementations. They're an abomination.

    Since meta-programming is clearly useful, and something that a lot of programmers want to do... why not add true compile-time metaprogramming support to C++ (or better yet, develop a 10x simpler and cleaner language and put proper compile-time metaprogramming support into it)? Templates are not a natural way to express metaprograms. Why not give C++ programmers the tools to write nice, clean, object-oriented, imperative metaprograms instead of the kludgy functional metaprograms they are forced to scrape by with now?

    Again: Boost exemplifies everything that's wrong with C++. All of the corner-case features of C++ that Boost exploits in order to provide useful and sane functionality in an insane way, should be removed from the language (or its successor). Instead, general and clean and low-level metaprogramming mechanisms should take their place so that the functionality embodied in Boost could be written directly by any mid-level programmer instead of an elite group of template wankers. :P

    • by Anonymous Coward on Sunday August 17, 2008 @04:45PM (#24637841)
      For a real laugh, read the parent replacing "C++" with "C" and "Boost" with "C++"
      • by mikael ( 484 )

        Replace "C++" with "assembly language" and "Boost" with "C", and you will get a Readers comments reply from a 1978 edition of BYTE magazine.

      • That comment was at least seven different kinds of awesome.
    • Re: (Score:3, Insightful)

      As a result, Boost itself is not very portable. Either it works on your platform and compiler, or it sort of works, or it doesn't.

      If you left this out you would've looked like less of a troll, seriously. Boost compiles with GCC4 (From 4.0.1 to the latest, on Mac, Linux and BSD), Intel's compiler collection (All OSes), Visual C++ (7.1 to 9.0Beta) and Borland.

      If it isn't cross-platform enough, I'd like to know what platform and compiler you use

      • by Sentry21 ( 8183 )

        I use DJGPP in DOS, you insensetive clod!

      • by tepples ( 727027 )

        Boost compiles with GCC4 (From 4.0.1 to the latest, on Mac, Linux and BSD)

        But MinGW for Windows appears to have been stuck on 3.4 for years. So if I'm on Windows, should I be using Visual C++ Express instead of MinGW?

        • actually that is a good question. Why is mingw version stuck in 3.4 when I'm running 4.2 on mac and 4.3 on debian lenny?

          does anyone know?

          --jeffk++

        • Honestly ? Yes. Microsoft's compilers output better code and, in my experience, are faster at compiling than GCC is. Various IDEs for Windows let you use the (free as in beer) Microsoft compilers with them, so I honestly have no idea why someone would want to use MinGW unless they relied on GCC-specific extensions.
    • Boost exemplifies everything that's wrong with C++. All of the corner-case features of C++ that Boost exploits in order to provide useful and sane functionality in an insane way, should be removed from the language (or its successor).

      Maybe that is why the next version of C++ will implement many of the features and libraries in Boost, but natively, avoiding some of the mental masturbation issues you mentioned.

    • Rather than design a new language that does support that functionality, or build external tools to provide it, they contort the template semantics of the language in order to try and squeeze that functionality out of nothing.

      Wait - You actually mean to say you'd rather see an entirely new language appear to address mere oversights in an existing one, than extend the single most widely supported (in the sense of "used" and "dev tools exist on platform-X") language to do a few new tricks?

      As an aside, I d
    • Re: (Score:3, Insightful)

      by benhattman ( 1258918 )

      Well, template metaprograms are crap. They're nigh undebuggable, they produce unreadable error messages, they take forever to compile, and most C++ programmers don't know how to write (or even read) their implementations. They're an abomination.

      Since meta-programming is clearly useful, and something that a lot of programmers want to do... why not add true compile-time metaprogramming support to C++ (or better yet, develop a 10x simpler and cleaner language and put proper compile-time metaprogramming support into it)? Templates are not a natural way to express metaprograms. Why not give C++ programmers the tools to write nice, clean, object-oriented, imperative metaprograms instead of the kludgy functional metaprograms they are forced to scrape by with now?

      This isn't proof that template metaprogramming or even the boost implementation of it sucks. This is proof that you've seen some bad code written with that feature. So what? Get in line! I've seen rotten code written using too many macros, I've seen rotten code written using too many templates, I've seen rotten code written using too many classes.

      Basically, name a language feature, find some engineer who decides that feature is the final greatest achievement in programming, and then give him a year or s

    • You'll only take boost/shared_ptr out of my cold, dead hands.

    • Boost is not a "template metaprogramming" library, as you seem to be implying. It's just a good library that happens to use template techniques for some purposes for which it is very well suited, for example, the Spirit parser.

      You don't need to know template metaprogramming at all to use Spirit. In fact, what Spirit does is make the specification of parsers look like BNF but in C++ syntax. Internally, yeah, the library is awfully complex. But that is the point of a library - it implements once and for al

    • Well, template metaprograms are crap. They're nigh undebuggable, they produce unreadable error messages, they take forever to compile, and most C++ programmers don't know how to write (or even read) their implementations. They're an abomination.

      You are describing STL not boost. Boost fixes the majority of these problems. C++ has evolved since STL was developed. Now these extensions can be written using readable, and debuggable code, and they have, in boost.

      Any reasonably intelligent programmer should be able to understand most of the boost headers. And see why they are great. If you can't you should probably be working in another language. C++ is not C. Your arguments died over 20 years ago.

    • Since meta-programming is clearly useful, and something that a lot of programmers want to do... why not add true compile-time metaprogramming support to C++ (or better yet, develop a 10x simpler and cleaner language and put proper compile-time metaprogramming support into it)?

      This confuses me greatly. Templates ARE true compile-time metaprogramming support. Perhaps just not exactly the design that you want? Contrary to what you seem to believe, things like partial template instantiation are NOT corner-

    • I agree with you that somewhere inside C++ is a small, elegant language screaming to get out. So, please write it already! :-) Until then, I'll use Boost.

      And no, I won't use your language if it requires extensive runtime support such as garbage collection, if it isn't statically compiled to machine code, or if it doesn't allow me to do the low-level fiddling I can do with C or C++.

    • Templates are not a natural way to express metaprograms. Why not give C++ programmers the tools to write nice, clean, object-oriented, imperative metaprograms instead of the kludgy functional metaprograms they are forced to scrape by with now?

      It is my intuition that you must define metaprograms in a pure functional language if the resulting programs are going to be statically compiled into machine code with little or no runtime support. This is especially true if the language supports multiple disjoint compilation units that produce object code that requires no compiler support to link together into an executable program.

  • by MostAwesomeDude ( 980382 ) on Sunday August 17, 2008 @05:12PM (#24638065) Homepage

    Seriously. Boost lets you avoid maybe five lines out of every hundred at the lower levels, but that doesn't really improve performance, just make code less readable and more dependent on another library. If people wanna use Boost, fine, but not all "modern C++ codebases" use it or even like it.

    • Re: (Score:3, Funny)

      So, you've implemented a perly regular expression library in straight STL?
      Yuda man.
      • I'd rather user PCRE. Written in clean and simple C and BSD licensed.

        • Makes sense. The value of Boost::Regex is the natural C++ interface. I don't think there is a whole lot of substantial difference between the Boost license and BSD.
    • Re: (Score:3, Insightful)

      by hr.wien ( 986516 )

      Five lines out of a hundred? That's an awfully specific number for something as huge as Boost. I know I saved a lot more than that on not having to implement a complete cross-platform signals/slot implementation myself. Or a threading library. Or a parser for Unicode data files from scratch. Or a smart pointer implementation. Or a specific graph implementation with corresponding algorithms every time I need one. I could go on.

      Boost isn't about performance. It's about letting you get shit done instead of rei

  • I'm seeing tons of comments on this thread about how awful boost is and how all it does is cause global warming, start wars with middle eastern nations, and destroy the pristine beauty of C++. Huh?!?

    Yes, boost includes meta programming libraries, but it also provides a number of other useful and relatively basic features which truly are missing in C++. The shared_ptr class is one example that nobody thought to include in STL for some unclear reason. What if you want non-platform specific threading or dat

    • I think the problem a lot of people have with Boost is not related to how good/bad it is; but rather the complexity in understanding it, and the level of complexity that it brings to your program.

      The problem as I see it is that if you're not one of the scary smart people that understands the way the boost developers think, then you will have problems integrating boost into your project, and debugging it when things go wrong.

      A lot of those problems will be due to your own ignorance but at the end of the day if something isn't obvious or at least well documented (and boost documentation isn't exactly a light read at the best of times) people will be turned off by how difficult it is, no matter how useful or speedy or good or whatever.

      I work with a scary smart C++ programmer who swears by boost. I primarily code in C, but he convinced me to write a project using C++ and boost to see how thoroughly useful it is.

      With boost, you can in very few lines of code, write code that can do impressive stuff. This is very true. But what you don't realise when you start out is that when you include boost::asio or boost::threads or whatever, you're including hundreds of thousands of lines of other people's code into your program, perhaps unnecessarily complicating it and making it so when you have a problem, you'll be staring at the debugger going "my code failed where?!" with a backtrace stretching back to infinity (and making Java Exception backtraces look NICE).

      Yes, reinventing the wheel is a bad thing, and should be discouraged. But what if you just need a simple wheel? A wheel that, I don't know, goes around and around. I don't need it to report on its air pressure, or self repair, or sprout wings and fly if I go off a cliff. I just need it to be .. a wheel.

      And boost tries to be the best possible wheel for every occasion. Its the wheel designed by the Borg. Assembled by nanites, it itself is made from nanits and will, whether you like it or not, assimilate your program into the Borg.

      • Re: (Score:3, Funny)

        by chrome ( 3506 )

        whoops, replied to the wrong post. Oh well, this'll do :P

      • I think this is the first boost complaint I've seen on this thread I would agree with. Some functionality in boost can be very difficult to understand, even if it is powerful. The date/time is one that I used recently and found less than intuitive.

        Most of this, however, is not a problem with the library, but rather a problem with the documentation. I find code that uses boost ends up being quite readable (assuming no metatemplate programming) however.

      • With boost, you can in very few lines of code, write code that can do impressive stuff. This is very true. But what you don't realise when you start out is that when you include boost::asio or boost::threads or whatever, you're including hundreds of thousands of lines of other people's code into your program, perhaps unnecessarily complicating it and making it so when you have a problem, you'll be staring at the debugger going "my code failed where?!" with a backtrace stretching back to infinity (and making

    • >The shared_ptr class is one example that nobody thought to include in STL for some unclear reason.

      Thread-safety/performance tradeoff.

      • The philosophy of C++ has always been that you only pay a performance hit for the features you use. A shared_ptr class follows this rule of thumb accurately. It's a good reason not to use the feature (if you have code that cannot suffer that performance hit), but it is not a valid reason to exclude it from the standard implementations.

        Basically, STL is a "good start" towards a general library. Boost is here to help us get a little further.

  • by EWIPlayer ( 881908 ) on Sunday August 17, 2008 @07:43PM (#24639385)

    Why is it that all the trolls are modded up? People that think that Boost is the same as STL are insightful. People that think Boost is for C++ supergeeks are insightful. People that think Boost epitomizes what is wrong about C++ are insightful. Boost represents a serious set of genius level code and design and helps thousands of programmers that understand how good it is.

    I understand that trolls exist and that they will always be with us. I understand that ignorant people will continue to post until the end of time. What I don't understand is that the /. community apparently agrees with them. This is supposed to be a community of hard-core geekery that understand things like operating systems, and game programming, and the intricacies of complex, multi-paradigm languages likes C++. What I'm seeing here is that it's populated, in greater numbers, with ignorance and "I heard a sound bite from someone who doesn't know what they're talking about so now I know everything" kinds of people.

    Have a look at what you know and what you don't know and then think about how intelligent your opinion actually is, and then post. And when you're modding that post, do the same thing.

    • Boost is a mixed bag (Score:5, Interesting)

      by registrar ( 1220876 ) on Sunday August 17, 2008 @09:13PM (#24639939)

      I use C++ and Boost and like them. But it's a love-hate relationship. I mostly found the trolls to be insightful because they reflected that love-hate.

      C++ is a great programming language in the sense that English is a great natural language. Undesigned, piecemeal, weird idioms, and a pig to learn. But expressive, powerful, portable. Boost plays the role of "the King's English" -- it's a style guide. Sometimes arguable, sometimes wrong, but mostly very good at pointing out how to avoid deficiencies in the language. C, C#, Delphi, Objective C, OCaml, Mathematica and Python are unquestionably better languages than C++. And Esperanto is better than English. But I speak English and use C++ because it does what I need it to do better than any of the alternatives.

      Dealing with geeks is a problem for management to deal with. C++ is probably rightly the domain of ubergeeks. If you choose to use C++ because it suits your needs and your geeks like a bit of mental masturbation, good for you. No matter what language you use, your local geeks will push the boundaries. With C++, Boost mitigates the damage your geeks might cause when pushing boundaries (e.g. template metaprogramming). Boost is therefore a tool for managing geeks.

      The biggest problem with C++ and Boost is also their biggest asset. The language is too plastic. Every new library, object or template comes with a domain-specific-language that you just have to learn. For example, using functors to create threads. That is counter-intuitive and hard. But with Boost, each domain-specific-language tends to be well designed, so that if you understand C++, then Boost will push you into using the features in a way that is portable and safe.

      But an overwhelming gripe is that the online documentation is atrocious. In the sense of incomplete, unclear, impenetrable, useless examples, broken links, broken HTML, outdated. To the point where it becomes a good reason not to use Boost.

      • I mostly agree with you (well, entirely agree except for what I define as qualifying as a "better" language; I believe English is "better" than Esperanto just like I believe C++ is "better" in the general case than most other options). That said...

        But an overwhelming gripe is that the online documentation is atrocious. In the sense of incomplete, unclear, impenetrable, useless examples, broken links, broken HTML, outdated. To the point where it becomes a good reason not to use Boost.

        Really? I can think

    • Thanks for that post. I've been scanning through the posts on this topic thinking "Why can't I have moderator points when I need them". I was formulating a similar post in my mind when I stumbled on yours. All of the anti-boost or anti-C++ posts can be tackled one-by-one, but who has the time, and what's the point? It's shocking what the modders have modded and how.

      My 2cents worth on the subject is this: Whenever you need to implement some code, it's worth seeing if there's a good library available t

    • by C_Kode ( 102755 )

      You just have to deal with it all just as they have to deal with you. You're dealing with an open community and when you deal with an open community you can people of all types. How many script kiddies do you think read /.? I would say lots of them.

      Here is the deal with /. moderation. It comes in two forms and all tags are Emotionally based except Interesting and Informitive. (sometimes even them!)

      1) Emotional Moderation: Someone says something they can relate too, so they moderate it up. Doesn't make

    • I understand that trolls exist and that they will always be with us. I understand that ignorant people will continue to post until the end of time. What I don't understand is that the /. community apparently agrees with them.

      If you can keep your head when all about you are losing theirs... they probably know something you don't.

      You, and a few other posters who have labelled all the critical posts as trolls, seem to be assuming that those who make those criticisms are incompetent and/or uninformed. Why do you assume this? It is clear from the comments that many of the critics have used (or tried to use) Boost in various circumstances, and found it isn't the silver bullet so many of its advocates seem to make out. The criticisms

    • One reason could be that Slashdot is populated by people who think Lisp or Haskell rock, together with people who think Perl/Python/Ruby rock and people who think no-one needs more than C (or assembly). Some of the people reading here write programs for phones or PICs. Many of them know many, many languages, have tried c++ and not liked it. Like me.

      The whole moderation system does not need consensus, just enough people who agree to get the score up to 5. In addition, the reason why more languages exi

One man's constant is another man's variable. -- A.J. Perlis

Working...