vote up 1 vote down star

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)
in ideally 100 LOC or less.

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.

flag
You should be able to make it so as the asker. – Lucas Jones Sep 22 at 20:18

2 Answers

vote up 1 vote down check

Read a file with some data. Sort the data. Write it to some other file.

link|flag
That's a pretty good idea. Maybe I'll have a file of simple "records" to show off classes and then sort on whatever criterion. – Derrick Turk Sep 22 at 20:37
Even "lorem ipsum" will do. Read the words, sort them, unique them, and write them out sorted. Granted, it's not very useful (although as a student I once got paid for writing a program that reads a text and outputs all the words scrambled - you never know), but it has the chance to show some very basic idioms in any language you implement it in. – sbi Sep 22 at 21:49
vote up 1 vote down

http://99-bottles-of-beer.net/

link|flag
Heh... this occurred to me, if only to show off the C++ template metaprogramming version (object code size grows linearly with the number of bottles!). – Derrick Turk Sep 22 at 20:31
Yes. that site is an excellent way to waste MUCH time, while still pretending to be useful, looking at code! – Brian Postow Sep 22 at 20:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.