vote up 13 vote down star
2

I have always wondered why in code examples (tutorials mostly) the names "Foo" and "Bar" are used so often. It is almost a standard.

For example:

int foo(char* bar){
   printf("%s", bar);
}
flag

10 Answers

vote up 13 vote down check

The New Hacker's Dictionary has a very good entry on this - and I consider it to be a better resource for this kind of thing that Wikipedia:

metasyntactic variable /n./

A name used in examples and understood to stand for whatever thing is under discussion, or any random member of a class of things under discussion. The word foo is the canonical example. To avoid confusion, hackers never (well, hardly ever) use `foo' or other words like it as permanent names for anything. In filenames, a common convention is that any filename beginning with a metasyntactic-variable name is a scratch file that may be deleted at any time.

To some extent, the list of one's preferred metasyntactic variables is a cultural signature. They occur both in series (used for related groups of variables or objects) and as singletons. Here are a few common signatures:

foo, bar, baz, quux, quuux, quuuux...:
MIT/Stanford usage, now found everywhere (thanks largely to early versions of this lexicon!). At MIT (but not at Stanford), baz dropped out of use for a while in the 1970s and '80s. A common recent mutation of this sequence inserts qux before quux.

bazola, ztesch:
Stanford (from mid-'70s on).

foo, bar, thud, grunt:
This series was popular at CMU. Other CMU-associated variables include gorp.

foo, bar, fum:
This series is reported to be common at XEROX PARC.

fred, barney:
See the entry for fred. These tend to be Britishisms.

corge, grault, flarp:
Popular at Rutgers University and among GOSMACS hackers.

zxc, spqr, wombat:
Cambridge University (England).

shme
Berkeley, GeoWorks, Ingres. Pronounced /shme/ with a short /e/.

snork
Brown University, early 1970s.

foo, bar, zot
Helsinki University of Technology, Finland.

blarg, wibble
New Zealand.

toto, titi, tata, tutu
France.

pippo, pluto, paperino
Italy. Pippo /pee'po/ and Paperino /pa-per-ee'-no/ are the Italian names for Goofy and Donald Duck.

aap, noot, mies
The Netherlands. These are the first words a child used to learn to spell on a Dutch spelling board.

Of all these, only foo' and bar' are universal (and baz nearly so). The compounds foobar and `foobaz' also enjoy very wide currency.

Some jargon terms are also used as metasyntactic names; barf and mumble, for example. See also Commonwealth Hackish for discussion of numerous metasyntactic variables found in Great Britain and the Commonwealth.

link|flag
Have to say, I'm from NZ and I've never heard of 'blarg' OR 'wibble'. – ChristianLinnell Jun 2 at 2:28
That was one pretty good. It's elaborate.Thanks dude. – Aaron Aug 10 at 6:13
vote up 6 vote down

From http://en.wikipedia.org/wiki/Foobar

In technology, the word was probably originally propagated through system manuals by Digital Equipment Corporation in 1960s and early 1970s. Another possibility is that foobar evolved from electronics, as an inverted foo signal. This is because if a digital signal is active low (so a negative or zero-voltage condition represents a "1") then a horizontal bar is commonly placed over the signal label. The Jargon File makes a case that foo possibly predates FUBAR

link|flag
this does not explain the why – hop Jan 23 at 12:43
vote up 3 vote down

From the Jargon Files http://www.catb.org/jargon/html/F/foo.html

foo: /foo/

  1. interj. Term of disgust.
  2. [very common] Used very generally as a sample name for absolutely anything, esp. programs and files (esp. scratch files).
  3. First on the standard list of metasyntactic variables used in syntax examples. See also bar, baz, qux, quux, garply, waldo, fred, plugh, xyzzy, thud.

bar: /bar/, n.

  1. [very common] The second metasyntactic variable, after foo and before baz. “Suppose we have two functions: FOO and BAR. FOO calls BAR....”
  2. Often appended to foo to produce foobar.
link|flag
vote up 2 vote down

I always thought foo bar came from the pronunciation of FUBAR. (F*cked up beyond all reason)

link|flag
vote up 2 vote down

Within the Python community, the right counterparts of foo and bar are spam and eggs.

link|flag
vote up 2 vote down

Metasyntactic Variables

link|flag
-1 for not linking to the canonical source – hop Jan 23 at 12:44
vote up 1 vote down

Let me add that it's a cultural thing. In Italy we use other common names for generic variables, files etc.

We commonly use the (italian) names of Disney characters.

link|flag
vote up 1 vote down

RFC 3092: Etymology of "Foo"

link|flag
vote up 0 vote down

It has the nice side effect of making it obvious to the experienced reader that the given code sample is just an example.

You could see it as a warning agains uncontrolled copy&paste...

link|flag
vote up 0 vote down

It came from FUBAR. F'ed up beyond all recognition.

link|flag

Your Answer

Get an OpenID
or

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