Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Metasyntactic variable
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Placeholder term used in computer science}} {{About|metasyntactic variables in computer science and programming|metasyntactic variables as used in formal logic|Metavariable (logic)|usage in spoken languages|Placeholder name}} A '''metasyntactic variable''' is a specific word or set of words identified as a [[placeholder name|placeholder]] in [[computer science]] and specifically [[computer programming]]. These words are commonly found in [[source code]] and are intended to be modified or substituted before real-world usage. For example, [[Foobar|''foo'' and ''bar'']] are used in over 330 [[Internet Engineering Task Force]] [[Request for Comments|Requests for Comments]], the documents which define foundational internet technologies like [[HTTP]] (web), [[TCP/IP]], and [[email]] [[Communications protocol|protocol]]s.<ref name="RFC3092">{{cite IETF|rfc=3092|title=Etymology of "Foo"|first1=Donald E.|last1=((Eastlake 3rd))|first2=Carl-Uno|last2=Manros|first3=Eric S.|last3=Raymond}}</ref><ref>{{Cite web|url=https://www.rfc-editor.org/retrieve/|title=Document Retrieval|work=RFC Editor}}</ref> By mathematical [[analogy]], a [[metasyntax|metasyntactic]] variable is a word that is a [[Variable (mathematics)|variable]] for other words, just as in [[algebra]] letters are used as variables for [[number]]s.<ref name="RFC3092"/>{{Failed verification|date=March 2025|reason=Source does not mention "math" or "algebra", nor "analogy" or "number" in a relevant context. If the source uses other terms to discuss this topic, please add a quote to this citation.}} Metasyntactic variables are used to name entities such as variables, [[Function (computer programming)|function]]s, and [[Command (programming)|command]]s whose exact identity is unimportant and serve only to demonstrate a concept, which is useful for teaching programming. ==Common metasyntactic variables== Since English is the foundation language or [[lingua franca]] of most computer programming languages, variables that originate in English are commonly seen even in programs and examples of programs written for other spoken-language audiences. The variables used in a particular context may depend on subcultures that develop around [[programming language]]s. ===General usage=== Metasyntactic variables used commonly across all programming languages include ''[[foobar]]'', ''foo'', ''bar'', ''baz'', ''{{not a typo|qux}}'', ''{{not a typo|quux}}'', ''{{not a typo|corge}}'', ''{{not a typo|grault}}'', ''{{not a typo|garply}}'', ''{{not a typo|waldo}}'', ''{{not a typo|fred}}'', ''{{not a typo|[[plugh]]}}'', ''[[xyzzy (computing)|{{not a typo|xyzzy}}]]'', and ''thud''.<ref name="RFC3092"/><ref>{{cite mailing list|title=Metasyntactic variable|first=Stuart|last=Laughlin|date=November 18, 2016|access-date=November 18, 2016|url=https://www.progclub.org/pipermail/programming/2016-November/002305.html|mailing-list=programming@ProgClub|url-status=dead|archive-url=https://web.archive.org/web/20221202085628/https://www.progclub.org/pipermail/programming/2016-November/002305.html|archive-date=December 2, 2022}}</ref> Two of these words, ''plugh'' and ''xyzzy'', are taken from the game ''[[Colossal Cave Adventure]]''.<ref>{{cite web |url=https://jerz.setonhill.edu/if/crowther/advdat.77-03-11 |title=advdat.77-03-11 |last=Crowther |first=Will |date=1977-03-11 |website= Colossal Cave Adventure Source Code |publisher=Dennis G. Jerz |access-date=2024-02-28}}</ref> A fuller reference can be found in ''[[The Hacker's Dictionary]]'' from [[MIT Press]]. ===Japanese=== In Japanese, the words {{Transliteration|ja|hoge}} (ほげ)<ref>{{Cite web|url=https://ejje.weblio.jp/content/hoge|title=hogeの意味・使い方 - 英和辞典 Weblio 辞書|website=ejje.weblio.jp}}</ref> and {{Transliteration|ja|fuga}} (ふが) are commonly used, with other common words and variants being {{Transliteration|ja|piyo}} (ぴよ), {{Transliteration|ja|hogera}} (ほげら), and {{Transliteration|ja|hogehoge}} (ほげほげ).<ref name="ja">[[:ja:メタ構文変数|メタ構文変数]] {{in lang|ja}}</ref>{{Circular reference|date=September 2017}} The origin of {{Transliteration|ja|hoge}} as a metasyntactic variable is not known, but it is believed to date to the early 1980s.<ref name="ja" /> ===French=== In France, the word ''toto'' is widely used, with variants ''tata'', ''titi'', ''tutu'' as related placeholders. One commonly-raised source for the use of ''toto'' is a reference to the stock character used to tell jokes with [[Tête à Toto]].{{Citation needed|date=February 2022}} ===Turkish=== In Turkey, the words ''hede'' and ''hödö'' (usually spelt ''hodo'' due to [[ASCII]]-only naming constraints of programming languages) are well-known metasyntactic variables that stem from popular humorous cartoon magazines of the 90's like LeMan. The words do not mean anything, and are used for precisely that reason. The terms were popularized more widely by the actor and stand-up comedian [[Cem Yılmaz]] in the late 90's and early 2000's.<ref>{{Cite book |url=https://books.google.com/books?id=dRxdDwAAQBAJ&dq=hede+h%C3%B6d%C3%B6&pg=PA12 |title=LeMan Dergisi 1376. Sayı |publisher=Lm Basin Yayin Ltd.şti. |language=tr}}</ref> ===Italian=== In Italian software programming culture, it is common to encounter names of Walt Disney characters (as found in the Italian versions of the shows) being used as variables. These names often appear in pseudo-code, are referenced in software engineering classes, and are commonly employed when explaining algorithms to colleagues. Among the most frequently used are "pippo" (Goofy), "pluto," and "paperino" (Donald Duck).<ref>{{Cite web|url=http://www.catb.org/jargon/html/M/metasyntactic-variable.html|title=The Jargon File - metasyntactic variable|website=www.catb.org/}}</ref> == Usage examples == [[File:Metasyntactic Variable FOO in Shell.png|thumb|A screenshot of a metasyntactic variable FOO assigned and echoed in an interactive shell session.]] ===C=== {{See also|C programming language}} In the following example the function name <code>foo</code> and the variable name <code>bar</code> are both metasyntactic variables. Lines beginning with <code>//</code> are comments. <syntaxhighlight lang="cpp"> // The function named foo int foo(void) { // Declare the variable bar and set the value to 1 int bar = 1; return bar; } </syntaxhighlight> ===C++=== {{See also|C++}} Function prototypes with examples of different [[Parameter (computer programming)#Argument passing|argument passing]] mechanisms:<ref name="MonganKindler2012">{{cite book|first1=John|last1=Mongan|first2=Noah|last2=Kindler|first3=Eric|last3=Giguere|title=Programming Interviews Exposed: Secrets to Landing Your Next Job|url=https://books.google.com/books?id=GQE4r2e5fAsC&pg=PA242|year=2012|publisher=John Wiley & Sons|isbn=978-1-118-28720-0|page=242}}</ref> <syntaxhighlight lang="cpp"> void Foo(Fruit bar); void Foo(Fruit* bar); void Foo(const Fruit& bar); </syntaxhighlight> Example showing the [[function overloading]] capabilities of the C++ language <syntaxhighlight lang="cpp"> void Foo(int bar); void Foo(int bar, int baz); void Foo(int bar, int baz, int qux); </syntaxhighlight> ===Python=== [[Spam (food)|Spam]], [[ham]], and [[Egg (food)|eggs]] are the principal metasyntactic variables used in the [[Python programming language]].<ref>{{Cite web|url=https://docs.python.org/3/tutorial/|title=The Python Tutorial — Python 3.8.1 documentation|website=docs.python.org}}</ref> This is a reference to the famous comedy sketch, "[[Spam (Monty Python)|Spam]]", by [[Monty Python]], the eponym of the language.<ref>{{Cite web |date=2021-09-04 |title=General Python FAQ — Python 3.9.7 documentation |url=https://docs.python.org/3/faq/general.html |url-status=live |archive-url=https://web.archive.org/web/20210826153036/https://docs.python.org/3/faq/general.html#why-is-it-called-python |archive-date=2021-08-26 |access-date=2021-09-05 |website=docs.python.org |publisher=Python Software Foundation |at=Why is it called Python?}}</ref> In the following example <code>spam</code>, <code>ham</code>, and <code>eggs</code> are metasyntactic variables and lines beginning with <code>#</code> are comments. <syntaxhighlight lang="python"> # Define a function named spam def spam(): # Define the variable ham ham = "Hello World!" # Define the variable eggs eggs = 1 return </syntaxhighlight> ===IETF Requests for Comments=== Both the [[IETF]] [[Request for Comments|RFC]]s and [[computer programming language]]s are rendered in [[plain text]], making it necessary to distinguish metasyntactic variables by a naming convention, since it would not be obvious from context. Here is an example from the official [[IETF]] document explaining the [[e-mail]] protocols (from RFC 772 - cited in RFC 3092): All is well; now the recipients can be specified. S: MRCP TO:<Foo@Y> <CRLF> R: 200 OK S: MRCP TO:<Raboof@Y> <CRLF> R: 553 No such user here S: MRCP TO:<bar@Y> <CRLF> R: 200 OK S: MRCP TO:<@Y,@X,fubar@Z> <CRLF> R: 200 OK Note that the failure of "Raboof" has no effect on the storage of mail for "Foo", "bar" or the mail to be forwarded to "fubar@Z" through host "X". (The documentation for texinfo emphasizes the distinction between metavariables and mere variables used in a programming language being documented in some texinfo file as: "Use the @var command to indicate metasyntactic variables. A metasyntactic variable is something that stands for another piece of text. For example, you should use a metasyntactic variable in the documentation of a function to describe the arguments that are passed to that function. Do not use @var for the names of particular [[Variable (programming)|variables]] in programming languages. These are specific names from a program, so @code is correct for them."<ref>{{cite web |url=http://sunsite.ualberta.ca/Documentation/Gnu/texinfo-4.0/html_chapter/texinfo_10.html |title=Marking Words and Phrases |work=Texinfo 4.0. The GNU Documentation Format|access-date=2012-11-25 |url-status=dead |archive-url=https://web.archive.org/web/20091106004856/http://sunsite.ualberta.ca/Documentation/Gnu/texinfo-4.0/html_chapter/texinfo_10.html |archive-date=2009-11-06 }}</ref>) Another point reflected in the above example is the convention that a metavariable is to be uniformly substituted with the same instance in all its appearances in a given schema. This is in contrast with [[nonterminal]] symbols in [[formal grammars]] where the nonterminals on the right of a production can be substituted by different instances.<ref name="Tennent2002">{{cite book|author=R. D. Tennent|title=Specifying Software: A Hands-On Introduction|year=2002|publisher=Cambridge University Press|isbn=978-0-521-00401-5|pages=36–37 and 210}}</ref> ==Example data== ===SQL=== It is common to use the name [[Acme Corporation|ACME]] in example [[SQL]] [[database]]s and as a placeholder company-name for the purpose of teaching. The term 'ACME Database' is commonly used to mean a training or example-only set of database data used solely for training or testing. ACME is also commonly used in documentation which shows SQL usage examples, a common practice with in many educational texts as well as technical documentation from companies such as [[Microsoft]] and [[Oracle Corporation|Oracle]].<ref name="Kriegel 2008 p.">{{cite book | last=Kriegel | first=Alex | title=SQL bible | publisher=Wiley | publication-place=Indianapolis, Ind | year=2008 | isbn=978-0-470-22906-4 | oclc=402446308 }}</ref><ref name="Ruel 2014 p.">{{cite book | last=Ruel | first=Chris | title=Oracle 12c for dummies | publisher=John Wiley & Sons | publication-place=Hoboken, NJ | year=2014 | isbn=978-1-118-74531-1 | oclc=870334544 | language=da }}</ref><ref>{{Cite web|url=https://docs.microsoft.com/en-us/dotnet/architecture/modern-web-apps-azure/work-with-data-in-asp-net-core-apps|title=Work with data in ASP.NET Core Apps|website=docs.microsoft.com|date=25 April 2023 }}</ref> ==See also== *[[Metavariable (logic)]] *[[Xyzzy (computing)|xyzzy]] *[[Alice and Bob]] *[[John Doe]] *[[Fnord]] *[[Free variables and bound variables]] *[[Gadget]] *''[[Lorem ipsum]]'' *[[Nonce word]] *[[Placeholder name]] *[[Widget (economics)|Widget]] *[[The Smurfs#Language|Smurf]] ==References== {{Reflist}} ==External links== *[http://www.catb.org/jargon/html/M/metasyntactic-variable.html Definition of ''metasyntactic variable'', with examples.] *[http://www.catb.org/jargon/html/C/Commonwealth-Hackish.html Examples of metasyntactic variables] used in ''[[Commonwealth of Nations|Commonwealth]] Hackish'', such as ''wombat''. *[http://blog.codinghorror.com/variable-foo-and-other-programming-oddities/ Variable "foo" and Other Programming Oddities] [[Category:Placeholder names]] [[Category:Metalogic]] [[Category:Variable (computer science)]] [[Category:Syntax (logic)]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:About
(
edit
)
Template:Circular reference
(
edit
)
Template:Citation needed
(
edit
)
Template:Cite IETF
(
edit
)
Template:Cite book
(
edit
)
Template:Cite mailing list
(
edit
)
Template:Cite web
(
edit
)
Template:Failed verification
(
edit
)
Template:In lang
(
edit
)
Template:Not a typo
(
edit
)
Template:Reflist
(
edit
)
Template:See also
(
edit
)
Template:Short description
(
edit
)
Template:Transliteration
(
edit
)