I'm putting together some brief pages on programming and programming languages for a corporate wiki. We are not a software or IT company, but we have many technical employees (engineers, geoscientists...).
I'd like to implement a brief example program (think no more than 5x the complexity of "Hello World", if that's a measurable metric) that shows off some of the striking features and idioms of each language. For instance, the C++ version would ideally make use of STL (maybe iterators and foreach) and/or templates, the Python version would make use of a genexp or list comprehension...
I'm thinking I'd like to illustrate at least:
- I/O
- iteration
- function definition
- class definition/object instantiation (where applicable)
I'm looking primarily at C, C++, Java, C#, VB, Perl, and Python. I'd love to show off a functional language (Common Lisp I'm most familiar with) but for this context I'm trying to stay reasonably mainstream.
So... any ideas?
P.S. Arguably this could be considered a CW candidate... unfortunately I don't have the rep to make it so, so I'll leave that decision up to the community.
