Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Tcl

From Wikipedia, the free encyclopedia
High-level programming language
For the Chinese electronics company, seeTCL Technology. For other uses, seeTcl (disambiguation).
Tcl
Tcl logo
ParadigmMulti-paradigm:event-driven,functional,imperative,object-oriented
Designed byJohn Ousterhout
DeveloperTcl Core Team[1]
First appeared1988; 37 years ago (1988)
Stable release
9.0.1[2] Edit this on Wikidata / 21 December 2024; 2 months ago (21 December 2024)
Typing disciplineDynamic typing, everything is astring
LicenseBSD-style[3]
Filename extensions.tcl, .tbc[4]
Websitewww.tcl-lang.org
www.tcl.tk
Majorimplementations
ActiveTclAndrowish
Dialects
Jim,Eagle
Influenced by
AWK,Lisp
Influenced
PHP,[5]PowerShell,[6]Tea, TH1[7]

Tcl (pronounced "tickle" or "TCL";[8] originallyTool Command Language) is ahigh-level,general-purpose,interpreted,dynamic programming language. It was designed with the goal of being very simple but powerful.[9] Tcl casts everything into the mold of acommand, even programming constructs like variable assignment and procedure definition.[10] Tcl supports multipleprogramming paradigms, includingobject-oriented,imperative,functional, andprocedural styles.

It is commonly used embedded intoC applications,[11] forrapid prototyping, scripted applications, GUIs, and testing.[12] Tcl interpreters are available for manyoperating systems, allowing Tcl code to run on a wide variety of systems. Because Tcl is a very compact language, it is used onembedded systems platforms, both in its full form and in several other small-footprint versions.[13]

The popular combination of Tcl with theTk extension is referred to asTcl/Tk (pronounced "tickle teak"[citation needed] or "tickle TK") and enables building agraphical user interface (GUI) natively in Tcl. Tcl/Tk is included in the standardPython installation in the form ofTkinter.

History

[edit]

The Tcl programming language was created in the spring of 1988 byJohn Ousterhout while he was working at theUniversity of California, Berkeley.[14][15] Originally "born out of frustration",[11] according to the author, with programmers devising their own languages for extendingelectronic design automation (EDA) software and, more specifically, theVLSI design toolMagic, which was a professional focus for John at the time.[16] Later Tcl gained acceptance on its own. Ousterhout was awarded theACM Software System Award in 1997 for Tcl/Tk.[17]

The name originally comes from "Tool Command Language", but is conventionally writtenTcl rather thanTCL.[18]

DateEvent
January 1990Tcl announced beyond Berkeley (WinterUSENIX).
June 1990Expect announced (Summer USENIX).
January 1991First announcement ofTk (Winter USENIX).
June 1993First Tcl/Tk conference (Berkeley). [table] geometry manager (forerunner of [grid]),[incr Tcl], TclDP and Groupkit, announced there.
August 1997Tcl 8.0 introduced a bytecode compiler.[19]
April 1999Tcl 8.1 introduces fullUnicode support[20] and advancedregular expressions.[21]
August 1999Tcl 8.2 introduces Tcl Extension Architecture (TEA)[22]
August 2000Tcl Core Team formed, moving Tcl to a more community-oriented development model.[1]
September 2002Ninth Tcl/Tk conference (Vancouver). Announcement of starkit packaging system. Tcl 8.4.0 released.[23]
December 2007Tcl 8.5 added new datatypes, a new extension repository,bignums,[24]lambdas.[25][26]
December 2012Tcl 8.6 added built-in dynamic object system, TclOO, and stackless evaluation.[27]
September 2024Tcl 9.0 added 64-bit capabilities, support for the full Unicode code point range, usesepoll &kqueue[28]

Tcl conferences and workshops are held in both the United States and Europe.[29] Several corporations, includingFlightAware[30] use Tcl as part of their products.

Features

[edit]
A Tcl file being edited in theEclipse IDE

Tcl's features include

  • All operations arecommands, including language structures. They are written inprefix notation.
  • Commands commonly accept a variable number of arguments (arevariadic).
  • Everything can be dynamically redefined and overridden. Actually, there are no keywords, so even control structures can be added or changed, although this is not advisable.
  • Alldata types can be manipulated asstrings, includingsource code. Internally, variables have types like integer and double, but converting is purely automatic.
  • Variables are not declared, but assigned to. Use of a non-defined variable results in an error.
  • Fully dynamic, class-basedobject system, TclOO, including advanced features such as meta-classes, filters, andmixins.[31]
  • Event-driven interface tosockets andfiles. Time-based and user-defined events are also possible.
  • Variable visibility restricted to lexical (static)scope by default, butuplevel andupvar allowing procs to interact with the enclosing functions' scopes.
  • All commands defined by Tcl itself generate error messages on incorrect usage.
  • Extensibility, viaC,C++,Java, Python, and Tcl.
  • Interpreted language usingbytecode
  • FullUnicode (3.1 in the beginning, regularly updated) support, first released 1999.
  • Regular expressions[21]
  • Cross-platform:Windows API;Unix,Linux,Macintosh etc.
  • Close, cross-platform integration with windowing (GUI) interfaceTk.
  • Multiple distribution mechanisms exist:
    • Full development version (for Windows e.g.ActiveState Tcl, see[1])
    • Tclkits (single file executable containing a complete scripting runtime, only about 4 megabytes in size),Starkits (wrapping mechanism for delivering an application in a self-contained, installation-free, and highly portable way) andStarpacks (combine Starkit with Tclkit to produce a Starpack – a single platform specific executable file, ideal for easy deployment)
    • The Jim Interpreter, a small footprint Tcl implementation
    • Freely distributablesource code under aBSD license.[32]

Safe-Tcl

[edit]

Safe-Tcl is a subset of Tcl that has restricted features so that Tcl scripts cannot harm their hosting machine or application.[33] File system access is limited and arbitrary system commands are prevented from execution. It uses a dual interpreter model with the untrusted interpreter running code in an untrusted script. It was designed byNathaniel Borenstein andMarshall Rose to include active messages in e-mail. Safe-Tcl can be included in e-mail when theapplication/safe-tcl andmultipart/enabled-mail are supported. The functionality of Safe-Tcl has since been incorporated as part of the standard Tcl/Tk releases.[34][35]

Syntax and fundamental semantics

[edit]

The syntax and semantics of Tcl are covered by twelve rules[36] known as the Dodekalogue.[37]

A Tcl script consists of a series of command invocations. A command invocation is a list of words separated by whitespace and terminated by anewline or semicolon. The first word is the name of a command, which may be built into the language, found in an availablelibrary, or defined in the script itself. The subsequent words serve as arguments to the command:

commandName argument1 argument2 ... argumentN

The following example uses theputs (short for "put string") command to display a string of text on the host console:

puts"Hello, World!"

This sends the string "Hello, World!" to thestandard output device along with an appended newline character.

Variables and the results of other commands can be substituted into strings, such as in this example which uses theset andexpr commands to store the result of a calculation in a variable (note that Tcl does not use= as an assignment operator), and then usesputs to print the result together with some explanatory text:

# expr evaluates text string as an expressionsetsum[expr1+2+3+4+5]puts"The sum of the numbers 1..5 is $sum."

The# character introduces acomment. Comments can appear anywhere the interpreter is expecting a command name.

# with curly braces, variable substitution is performed by exprsetx1setsum[expr{$x+2+3+4+5}];# $x is not substituted before passing the parameter to expr;# expr substitutes 1 for $x while evaluating the expressionputs"The sum of the numbers 1..5 is $sum.";# sum is 15
# without curly braces, variable substitution occurs at the definition site (lexical scoping)setx2setop*sety3setres[expr$x$op$y];# $x, $op, and $y are substituted, and the expression is evaluated to 6puts"$x $op $y is $res.";# $x, $op, $y, and $res are substituted and evaluated as strings

As seen in these examples, there is one basic construct in the language: the command. Quoting mechanisms and substitution rules determine how the arguments to each command are processed.

One special substitution occursbefore the parsing of any commands or arguments. If the final character on a line (i.e., immediately before a newline) is a backslash, then the backslash-newline combination (and any spaces or tabs immediately following the newline) are replaced by a single space. This provides aline continuation mechanism, whereby long lines in the source code can be wrapped to the next line for the convenience of readers.

Continuing with normal argument processing, a word that begins with a double-quote character (") extends to the next double-quote character. Such a word can thus contain whitespace and semicolons without those characters being interpreted as having any special meaning (i.e., they are treated as normal text characters). A word that begins with an opening curly-brace character ({) extends to the next closing curly-brace character (}). Inside curly braces all forms of substitution are suppressed except the previously mentioned backslash-newline elimination. Words not enclosed in either construct are known as bare words.

In bare and double-quoted words, three types of substitution may occur:

  • Command substitution replaces the contents of balanced square brackets with the result of evaluating the script contained inside. For example,[expr 1+2+3] is replaced by the result of evaluating the contained expression (in this case 6).
  • Variable substitution replaces the name of a variable prefixed with a dollar sign with the contents (or value) of the variable. For example,$foo is replaced by the contents of the variable called "foo". The variable name may be surrounded by curly braces to separate it from subsequent text in otherwise ambiguous cases (e.g.,${foo}ing).
  • Backslash substitution replaces a backslash followed by a letter with another character. For example,\n is replaced by a newline.

Substitution proceeds left-to-right in a single scan through each word. Any substituted text will not be scanned again for possible further substitutions. However, any number of substitutions can appear in a single word.

From Tcl 8.5 onwards, any word may be prefixed by{*}, which causes the word to be split apart into its constituent sub-words for the purposes of building the command invocation (similar to the,@ sequence ofLisp's quasiquote feature).

As a consequence of these rules, the result of any command may be used as an argument to any other command. Note that, unlike inUnix command shells, Tcl does not reparse any string unless explicitly directed to do so, which makes interactive use more cumbersome, but scripted use more predictable (e.g., the presence of spaces in filenames does not cause difficulties).

The single equality sign (=) serves no special role in the language at all. The double equality sign (==) is the test for equality which is used in expression contexts such as theexpr command and in the first argument toif. (Both commands are part of the standard library; they have no special place in the library and can be replaced if desired.)

The majority of Tcl commands, especially in the standard library, arevariadic, and theproc (the constructor for scripted command procedures) allows one to define default values for unspecified arguments and a catch-all argument to allow the code to process arbitrary numbers of arguments.

Tcl is not statically typed: each variable may contain integers, floats, strings, lists, command names, dictionaries, or any other value; values are reinterpreted (subject to syntactic constraints) as other types on demand. However, values areimmutable and operations that appear to change them actually just return a new value instead.

Basic commands

[edit]

The most important commands that refer to program execution and data operations are:

  • set writes a new value to a variable (creates a variable if did not exist). If used only with one argument, it returns the value of the given variable (it must exist in this case).
  • proc defines a new command, whose execution results in executing a given Tcl script, written as a set of commands.return can be used to immediately return control to the caller.

The usual execution control commands are:

  • if executes given script body (second argument), if the condition (first argument) is satisfied. It can be followed by additional arguments starting fromelseif with the alternative condition and body, orelse with the complementary block.
  • while repeats executing given script body, as long as the condition (first argument) remains satisfied
  • foreach executes given body where the control variable is assigned list elements one by one.
  • for shortcut for initializing the control variable, condition (as inwhile) and the additional "next iteration" statement (command executed after executing the body)

Those above looping commands can be additionally controlled by the following commands:

  • break interrupts the body execution and returns from the looping command
  • continue interrupts the body execution, but the control is still given back to the looping command. Forwhile it means to loop again, forfor andforeach, pick up the next iteration.
  • return interrupts the execution of the current body no matter how deep inside a procedure, until reaching the procedure boundary, and returns given value to the caller.

Advanced commands

[edit]
  • expr passes the argument to a separate expression interpreter and returns the evaluated value. Note that the same interpreter is used also for "conditional" expression forif and looping commands.
  • list creates alist comprising all the arguments, or an empty string if no argument is specified. Thelindex command may be used on the result to re-extract the original arguments.
  • array manipulatesarray variables.
  • dict manipulatesdictionary (since 8.5), which are lists with an even number of elements where every two elements are interpreted as a key/value pair.
  • regexp matches a regular expression against a string.
  • regsub Performs substitutions based on regular expression pattern matching.
  • uplevel is acommand that allows a command script to be executed in ascope other than the current innermost scope on the stack.
  • upvar creates a link to variable in a different stack frame.
  • namespace lets you create, access, and destroy separate contexts for commands and variables.
  • apply applies an anonymous function (since 8.5).
  • coroutine,yield, andyieldto create and produce values fromcoroutines (since 8.6).
  • try lets you trap and process errors and exceptions.
  • catch lets you trap exceptional returns.
  • zlib provides access to the compression and checksumming facilities of the Zlib library (since 8.6).

Uplevel

[edit]

uplevel allows a command script to be executed in ascope other than the current innermost scope on the stack. Because the command script may itself call procedures that use theuplevel command, this has the net effect of transforming thecall stack into a call tree.[38]

It was originally implemented to permit Tcl procedures to reimplement built-in commands (likefor,if orwhile) and still have the ability to manipulate localvariables. For example, the following Tcl script is a reimplementation of thefor command (omittingexception handling):

procfor{initCmdtestExpradvanceCmdbodyScript}{uplevel1$initCmdsettestCmd[listexpr$testExpr]while{[uplevel1$testCmd]}{uplevel1$bodyScriptuplevel1$advanceCmd}}

Upvar

[edit]

upvar arranges for one or morelocal variables in the current procedure to refer to variables in an enclosing procedure call or toglobal variables. The upvar command simplifies the implementation of call-by-name procedure calling and also makes it easier to build new control constructs as Tcl procedures.[39]

A decr command that works like the built-inincr command except it subtracts the value from the variable instead of adding it:

procdecr{varName{decrement1}}{upvar1$varNamevarincrvar[expr{-$decrement}]}

Object-oriented

[edit]
See also:Object-oriented programming

Tcl 8.6 added a built-in dynamic object system, TclOO, in 2012.[31] It includes features such as:

  • Class-based object system. This is what most programmers expect from OO.
  • Allows per-object customization and dynamic redefinition of classes.
  • Meta-classes
  • Filters
  • Mixins
  • A system for implementing methods in custom ways, so that package authors that want significantly different ways of doing a method implementation may do so fairly simply.
oo::classcreatefruit{methodeat{}{puts"yummy!"}}oo::classcreatebanana{superclassfruitconstructor{}{myvariablepeeledsetpeeled0}methodpeel{}{myvariablepeeledsetpeeled1puts"skin now off"}methodedible?{}{myvariablepeeledreturn$peeled}methodeat{}{if{![myedible?]}{mypeel}next}}setb[banananew]$beatprints"skin now off"and"yummy!"fruitdestroy$beaterror"unknown command"

Tcl did not haveobject oriented (OO) syntax until 2012,[31] so various extension packages emerged to enable object-oriented programming. They are widespread in existing Tcl source code. Popular extensions include:

TclOO was not only added to build a strong object oriented system, but also to enable extension packages to build object oriented abstractions using it as a foundation. After the release of TclOO,incr Tcl was updated to use TclOO as its foundation.[27]

Web application development

[edit]

Tcl Web Server is a pure-Tcl implementation of an HTTP protocol server. It runs as a script on top of a vanilla Tcl interpreter.

Apache Rivet is an open source programming system forApache HTTP Server that allows developers to use Tcl as a scripting language for creating dynamic web applications. Rivet is similar toPHP,ASP, andJSP. Rivet was primarily developed by Damon Courtney, David Welton, Massimo Manghi, Harald Oehlmann andKarl Lehenbauer. Rivet can use any of the thousands of publicly available Tcl packages that offer countless features such as database interaction (Oracle, PostgreSQL, MySQL, SQLite, etc.), or interfaces to popular applications such as theGD Graphics Library.

Interfacing with other languages

[edit]

Tcl interfaces natively with theC language.[40] This is because it was originally written to be a framework for providing a syntactic front-end to commands written in C, and all commands in the language (including things that might otherwise bekeywords, such asif orwhile) are implemented this way. Each command implementationfunction is passed an array of values that describe the (already substituted) arguments to the command, and is free to interpret those values as it sees fit.

Digitallogic simulators often include a Tcl scripting interface for simulatingVerilog,VHDL and SystemVeriloghardware languages.

Tools exist (e.g.SWIG,Ffidl) to automatically generate the necessary code to connect arbitrary C functions and the Tcl runtime, andCritcl does the reverse, allowing embedding of arbitrary C code inside a Tcl script and compiling it at runtime into aDLL.

Extension packages

[edit]

The Tcl language has always allowed for extension packages, which provide additional functionality, such as a GUI, terminal-based application automation, database access, and so on. Commonly used extensions include:

Tk
The most popular Tcl extension is theTk toolkit, which provides agraphical user interface library for a variety ofoperating systems. Each GUI consists of one or moreframes. Each frame has a layout manager.
Expect
One of the other very popular Tcl extensions isExpect extension. The early close relationship of Expect with Tcl is largely responsible for the popularity of Tcl in prolific areas of use such as in Unix testing, where Expect was (and still is today) employed very successfully to automate telnet, ssh, and serial sessions to perform many repetitive tasks (i.e., scripting of formerly interactive-only applications). Tcl was the only way to run Expect, so Tcl became very popular in these areas of industry.
Tile/Ttk
Tile/Ttk[41] is a styles and theming widget collection that can replace most of the widgets in Tk with variants that are truly platform native through calls to anoperating system'sAPI. Themes covered in this way areWindows XP, Windows Classic,Qt (that hooks into theX11KDE environment libraries) andAqua (Mac OS X). A theme can also be constructed without these calls using widget definitions supplemented with imagepixmaps. Themes created this way include Classic Tk, Step, Alt/Revitalized, Plastik and Keramik. Under Tcl 8.4, this package is known as Tile, while in Tcl 8.5 it has been folded into the core distribution of Tk (as Ttk).
Tix
Tix, the Tk Interface eXtension, is a set of user interface components that expand the capabilities of Tcl/Tk and Python applications. It is an open source software package maintained by volunteers in the Tix Project Group and released under a BSD-style license.[42]
Itcl/IncrTcl
Itcl is an object system for Tcl, and is normally named as [incr Tcl] (that being the way to increment in Tcl, similar in fashion to the name C++).
Tcllib
Tcllib is a set of scripted packages for Tcl that can be used with no compilation steps.
Tklib
Tklib is a collection of utility modules for Tk, and a companion to Tcllib.
tDOM
tDOM is a Tcl extension for parsing XML, based on theExpat parser
TclTLS
TclTLS isOpenSSL extension to Tcl.
TclUDP
The TclUDP[43] extension provides a simple library to supportUser Datagram Protocol (UDP) sockets in Tcl.
TWAPI
TWAPI (Tcl Windows API) is an extension to Tcl providing bindings to the Windows API.
Databases
Tcl Database Connectivity (TDBC), part of Tcl 8.6, is a common database access interface for Tcl scripts. It currently supports drivers for accessingMySQL,ODBC,PostgreSQL andSQLite databases. More are planned for the future. Access to databases is also supported through database-specific extensions, of which there are many available.[44]

See also

[edit]

References

[edit]
  1. ^ab"Tcl/Tk Core Development".Tcl Developer Xchange. Retrieved2016-11-01.
  2. ^"[TCLCORE] Tk 9.0.1 RELEASED". 21 December 2024. Retrieved22 December 2024.
  3. ^"Tcl/Tk License Terms".Tcl Developer Xchange. Retrieved2016-11-02.
  4. ^"Tcl Dev Kit – Compiler".ActiveState Docs. Retrieved2016-11-02.
  5. ^Lerdorf, Rasmus (2007-04-26)."PHP on Hormones – history of PHP presentation by Rasmus Lerdorf given at the MySQL Conference in Santa Clara, California". The Conversations Network. Retrieved2009-12-11.
  6. ^"PowerShell and WPF: WTF".Windows PowerShell Blog. Microsoft. Archived fromthe original on December 25, 2008. RetrievedApril 3, 2019.
  7. ^"TH1 Scripts". Fossil.
  8. ^Kenny, Kevin (4 July 2005)."Re: TCL certification".Newsgroupcomp.lang.tcl.
  9. ^"Language".Tcl Developer Xchange. Retrieved2016-11-02.
  10. ^Tcl Fundamentals, Chapter 1 inPractical Programming in Tcl and Tk,ISBN 0-13-038560-3
  11. ^abFrom the inside flap ofTcl and the Tk Toolkit,ISBN 0-201-63337-X
  12. ^"Uses for Tcl/Tk".Tcl Developer Xchange. Retrieved2016-11-02.
  13. ^"Cisco IOS Scripting with TCL Configuration Guide".Cisco Support. Retrieved2016-11-02.
  14. ^John Ousterhout."History of Tcl".Personal pages. Stanford University. Retrieved2011-08-09.
  15. ^"History of Tcl".Tcl Developer Xchange. Retrieved2016-11-02.
  16. ^"EDA".wiki.tcl-lang.org. Retrieved2022-04-27.
  17. ^"John K Ousterhout – Award Winner".ACM Awards. Retrieved2016-11-04.
  18. ^From the Tcler's WikiTcl vs. TCL
  19. ^"Tcl/Tk 8.0 Release Announcement".Tcl Developer Xchange. Retrieved2014-07-01.
  20. ^"Tcl/Tk 8.1 Release Announcement".Tcl Developer Xchange. Retrieved2014-07-01.
  21. ^ab"New Regular Expression Features in Tcl 8.1".Tcl Developer Xchange. Retrieved2016-11-02.
  22. ^"Tcl/Tk 8.2 Release Announcement".Tcl Developer Xchange. 1999-08-18. Retrieved2014-07-01.
  23. ^"Tcl/Tk 8.4 Release Announcement".Tcl Developer Xchange. 2013-06-01. Retrieved2014-07-01.
  24. ^"TIP #237: Arbitrary-Precision Integers for Tcl".Tcl Developer Xchange. Retrieved2016-11-01.
  25. ^"TIP #194: TIP #194: Procedures as Values via apply".Tcl Developer Xchange. Retrieved2016-11-01.
  26. ^"Tcl/Tk 8.5 Release Announcement".Tcl Developer Xchange. 2013-09-18. Retrieved2014-07-01.
  27. ^ab"Tcl/Tk 8.6 Release Announcement".Tcl Developer Xchange. 2013-09-20. Retrieved2014-07-01.
  28. ^"Tcl/Tk 9.0 Release Announcement".Tcl Developer Xchange. 2024-09-26. Retrieved2024-09-26.
  29. ^"Tcl/Tk Conferences".Tcl Developer Xchange. Retrieved2016-11-01.
  30. ^"FlightAware".GitHub. Retrieved2024-10-02.
  31. ^abc"TIP #257: Object Orientation for Tcl".Tcl Developer Xchange. Retrieved2016-11-01.
  32. ^"Download Tcl/Tk Sources".Tcl Developer Xchange. Retrieved2016-11-01.
  33. ^"Safe Tcl".Tcl Developer Xchange. Retrieved2016-11-01.
  34. ^Brown, Lawrie (September 18–20, 1996)."Mobile Code Security". In Bossomaier, Terry; Chubb, Lucy (eds.).Proceedings, 2nd Joint Conference, AUUG '96 and Asia-Pacific WWW '96. Melbourne, Australia. p. 50. Retrieved2011-03-22.
  35. ^Welch, Brent B.; Jones, Ken; Hobbs, Jeffrey (2003).Practical programming in Tcl and Tk. Vol. 1 (4th ed.). Prentice Hall PTR. p. 291.ISBN 0-13-038560-3.
  36. ^"Tcl manual page – Tcl Built-In Commands".Tcl Developer Xchange. Retrieved2014-06-14.
  37. ^"Dodekalogue". Tcler's Wiki. Retrieved2014-06-14. (Also contains a shorter "Octalogue" version of the rules.)
  38. ^"uplevel manual page – Built-In Commands".Tcl Developer Xchange. Retrieved2016-06-14.
  39. ^"upvar manual page – Built-In Commands".Tcl Developer Xchange. Retrieved2016-06-14.
  40. ^"Tcl C API".tcl.tk. Retrieved2016-11-02.
  41. ^"Tile: an improved themeing engine for Tk".SourceForge. RetrievedAugust 7, 2016.
  42. ^"Tix License". SourceForge. RetrievedAugust 7, 2012.
  43. ^"TclUDP". Tcl'ers Wiki. RetrievedAugust 7, 2012.
  44. ^"TDBC". Tcl'ers Wiki. RetrievedAugust 7, 2012.

Further reading

[edit]

External links

[edit]
Wikibooks has a book on the topic of:Tcl Programming
Wikimedia Commons has media related toTcl programming language family.
General
Software
packages
Community
Organisations
Licenses
Types and
standards
Challenges
Related
topics
Authority control databases: NationalEdit this at Wikidata
Retrieved from "https://en.wikipedia.org/w/index.php?title=Tcl&oldid=1279964253"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp