OnlineWoerterBuecher.de
Internes

Lexikon


Liana


A href="module.php?name=Lexikon&file=search&eid=1&query=C">C-like, interpretive, {object-oriented programming} language, {class} library, and integrated development environment designed specifically for development of href="module.php?name=Lexikon&file=search&eid=1&query=application programs">application programs for href="module.php?name=Lexikon&file=search&eid=1&query=Microsoft Windows">Microsoft Windows and {Windows NT}. Designed by Jack Krupansky of href="module.php?name=Lexikon&file=search&eid=1&query=Base Technology">Base Technology, Liana was first released as a commercial product in August 1991. The language is designed to be as easy to use as href="module.php?name=Lexikon&file=search&eid=1&query=BASIC">BASIC, as concise as href="module.php?name=Lexikon&file=search&eid=1&query=C">C, and as flexible as href="module.php?name=Lexikon&file=search&eid=1&query=Smalltalk">Smalltalk. The href="module.php?name=Lexikon&file=search&eid=1&query=OOP">OOP href="module.php?name=Lexikon&file=search&eid=1&query=syntax">syntax of href="module.php?name=Lexikon&file=search&eid=1&query=C++">C++ was chosen over the less familiar syntax of href="module.php?name=Lexikon&file=search&eid=1&query=Smalltalk">Smalltalk and href="module.php?name=Lexikon&file=search&eid=1&query=Objective-C">Objective-C to appeal to href="module.php?name=Lexikon&file=search&eid=1&query=C">C programmers and in recognition of C++ being the leading OOP language. The syntax is a simplified subset of href="module.php?name=Lexikon&file=search&eid=1&query=C/C++">C/C++. The href="module.php?name=Lexikon&file=search&eid=1&query=semantics">semantics are also a simplified subset of C/C++, but extended to achieve the flexibility of Smalltalk. Liana is a typeless language (like href="module.php?name=Lexikon&file=search&eid=1&query=Lisp">Lisp, href="module.php?name=Lexikon&file=search&eid=1&query=Snobol">Snobol and href="module.php?name=Lexikon&file=search&eid=1&query=Smalltalk">Smalltalk), which means that the datatypes of variables, function parameters, and function return values are not needed since values carry the type information. Hence, variables are simply containers for values and function parameters are simply pipes through which any type of value can flow. href="module.php?name=Lexikon&file=search&eid=1&query=Single inheritance">Single inheritance, but not href="module.php?name=Lexikon&file=search&eid=1&query=multiple inheritance">multiple inheritance, is supported. href="module.php?name=Lexikon&file=search&eid=1&query=Memory management">Memory management is automatic using {reference counting}. The library includes over 150 href="module.php?name=Lexikon&file=search&eid=1&query=classes">classes, for href="module.php?name=Lexikon&file=search&eid=1&query=dynamic arrays">dynamic arrays, href="module.php?name=Lexikon&file=search&eid=1&query=associative lookup">associative lookup tables, windows, menus, dialogs, controls, bitmaps, cursors, icons, mouse movement, keyboard input, fonts, text and graphics display, href="module.php?name=Lexikon&file=search&eid=1&query=DDE">DDE, and href="module.php?name=Lexikon&file=search&eid=1&query=MDI">MDI. Liana provides flexible OOP support for Windows programming. For example, a href="module.php?name=Lexikon&file=search&eid=1&query=list box">list box automatically fills itself from an associated href="module.php?name=Lexikon&file=search&eid=1&query=object">object. That object is not some sort of special object, but is merely any object that "behaves like" an array (i.e., has a "size" member function that returns the number of elements, a "get" function that returns the ith element, and the text for each element is returned by calling the "text" member function for the element). A related product, C-odeScript, is an embeddable application scripting language. It is an implementation of Liana which can be called from C/C++ applications to dynamically evaluate expressions and statement sequences. This can be used to offer the end-user a macro/scripting capability or to allow the C/C++ application to be customized without changing the C/C++ source code. Here' s a complete Liana program which illustrates the flexibility of the language semantics and the power of the class library: main { // Prompt user for a string. // No declaration needed for "x" (becomes a global variable.) x = ask ("Enter a String") // Use "+" operator to concatenate strings. Memory // management for string temporaries is automatic. The // "message" function displays a Windows message box. message ("You entered: " + x) // Now x will take on a different type. The "ask_number" // function will return a "real" if the user' s input // contains a decimal point or an "int" if no decimal // point. x = ask_number ("Enter a Number") // The "+" operator with a string operand will // automatically convert the other operand to a string. message ("You entered: " + x) // Prompt user for a Liana expression. Store it in a // local variable (the type, string, is merely for // documentation.) string expr = ask ("Enter an Expression") // Evaluate the expression. The return value of "eval" // could be any type. The "source_format" member function // converts any value to its source format (e.g., add // quotes for a string.) The "class_name" member function // return the name of the class of an object/value. // Empty parens can be left off for member function calls. x = eval (expr) message ("The value of " + expr + " is " + x.source_format + " its type is " + x.class_name) } The author explained that the "Li" of Liana stands for "Language interpreter" and liana are vines that grow up trees in tropical forests, which seemed quite appropriate for a tool to deal with the complexity of MS Windows! It is also a woman' s name. ["Liana for Windows", Aitken, P., PC TECHNIQUES, Dec/Jan 1993]. ["Liana: A Language For Writing Windows Programs", Burk, R., Tech Specialist (R&D Publications), Sep 1991]. ["Liana v. 1.0." Hildebrand, J.D., Computer Language, Dec 1992]. ["Liana: A Windows Programming Language Based on C and C++", Krupansky, J., The C Users Journal, Jul 1992]. ["Writing a Multimedia App in Liana", Krupansky, J., Dr. Dobb' s Journal, Winter Multimedia Sourcebook 1994]. ["The Liana Programming Language", R. Valdes, Dr Dobbs J Oct 1993, pp.50-52]. (1999-06-29)

In addition suitable contents:
[ href="module.php?name=Lexikon&op=content&tid=31">2 ] [ href="module.php?name=Lexikon&op=content&tid=134">= ] [ href="module.php?name=Lexikon&op=content&tid=135">@ ] [ href="module.php?name=Lexikon&op=content&tid=262">ad ] [ href="module.php?name=Lexikon&op=content&tid=396">ag ] [ href="module.php?name=Lexikon&op=content&tid=411">ai ] [ href="module.php?name=Lexikon&op=content&tid=433">al ] [ href="module.php?name=Lexikon&op=content&tid=544">am ] [ href="module.php?name=Lexikon&op=content&tid=592">an ] [ href="module.php?name=Lexikon&op=content&tid=683">app ] [ href="module.php?name=Lexikon&op=content&tid=700">application ] [ href="module.php?name=Lexikon&op=content&tid=711">application program ] [ href="module.php?name=Lexikon&op=content&tid=740">ar ] [ href="module.php?name=Lexikon&op=content&tid=743">arc ] [ href="module.php?name=Lexikon&op=content&tid=784">array ] [ href="module.php?name=Lexikon&op=content&tid=799">AS ] [ href="module.php?name=Lexikon&op=content&tid=800">as ] [ href="module.php?name=Lexikon&op=content&tid=825">ASIC ] [ href="module.php?name=Lexikon&op=content&tid=894">at ] [ href="module.php?name=Lexikon&op=content&tid=935">au ] [ href="module.php?name=Lexikon&op=content&tid=996">av ] [ href="module.php?name=Lexikon&op=content&tid=1025">B ] [ href="module.php?name=Lexikon&op=content&tid=1026">b ] [ href="module.php?name=Lexikon&op=content&tid=1034">ba ] [ href="module.php?name=Lexikon&op=content&tid=1127">Base Technology ] [ href="module.php?name=Lexikon&op=content&tid=1159">bb ] [ href="module.php?name=Lexikon&op=content&tid=1181">be ] [ href="module.php?name=Lexikon&op=content&tid=1269">bi ] [ href="module.php?name=Lexikon&op=content&tid=1334">bit ] [ href="module.php?name=Lexikon&op=content&tid=1343">bitmap ] [ href="module.php?name=Lexikon&op=content&tid=1368">bj ] [ href="module.php?name=Lexikon&op=content&tid=1444">bo ] [ href="module.php?name=Lexikon&op=content&tid=1446">boa ] [ href="module.php?name=Lexikon&op=content&tid=1447">board ] [ href="module.php?name=Lexikon&op=content&tid=1521">box ] [ href="module.php?name=Lexikon&op=content&tid=1535">br ] [ href="module.php?name=Lexikon&op=content&tid=1606">bs ] [ href="module.php?name=Lexikon&op=content&tid=1695">by ] [ href="module.php?name=Lexikon&op=content&tid=1708">C ] [ href="module.php?name=Lexikon&op=content&tid=1712">C++ ] [ href="module.php?name=Lexikon&op=content&tid=1724">ca ] [ href="module.php?name=Lexikon&op=content&tid=1810">capability ] [ href="module.php?name=Lexikon&op=content&tid=1863">cat ] [ href="module.php?name=Lexikon&op=content&tid=1898">C/C++ ] [ href="module.php?name=Lexikon&op=content&tid=2001">ch ] [ href="module.php?name=Lexikon&op=content&tid=2099">ci ] [ href="module.php?name=Lexikon&op=content&tid=2136">ck ] [ href="module.php?name=Lexikon&op=content&tid=2138">cl ] [ href="module.php?name=Lexikon&op=content&tid=2145">class ] [ href="module.php?name=Lexikon&op=content&tid=2152">class library ] [ href="module.php?name=Lexikon&op=content&tid=2247">co ] [ href="module.php?name=Lexikon&op=content&tid=2273">code ] [ href="module.php?name=Lexikon&op=content&tid=2288">C-odeScript ] [ href="module.php?name=Lexikon&op=content&tid=2330">com ] [ href="module.php?name=Lexikon&op=content&tid=2441">complete ] [ href="module.php?name=Lexikon&op=content&tid=2451">complexity ] [ href="module.php?name=Lexikon&op=content&tid=2490">Computer ] [ href="module.php?name=Lexikon&op=content&tid=2545">con ] [ href="module.php?name=Lexikon&op=content&tid=2547">concatenate ] [ href="module.php?name=Lexikon&op=content&tid=2606">cons ] [ href="module.php?name=Lexikon&op=content&tid=2656">control ] [ href="module.php?name=Lexikon&op=content&tid=2791">cr ] [ href="module.php?name=Lexikon&op=content&tid=2900">cu ] [ href="module.php?name=Lexikon&op=content&tid=2917">cursor ] [ href="module.php?name=Lexikon&op=content&tid=2976">D ] [ href="module.php?name=Lexikon&op=content&tid=3006">data ] [ href="module.php?name=Lexikon&op=content&tid=3135">DD ] [ href="module.php?name=Lexikon&op=content&tid=3136">dd ] [ href="module.php?name=Lexikon&op=content&tid=3139">DDE ] [ href="module.php?name=Lexikon&op=content&tid=3151">de ] [ href="module.php?name=Lexikon&op=content&tid=3165">deb ] [ href="module.php?name=Lexikon&op=content&tid=3177">dec ] [ href="module.php?name=Lexikon&op=content&tid=3186">decimal point ] [ href="module.php?name=Lexikon&op=content&tid=3304">design ] [ href="module.php?name=Lexikon&op=content&tid=3324">development ] [ href="module.php?name=Lexikon&op=content&tid=3326">development environment ] [ href="module.php?name=Lexikon&op=content&tid=3371">diff ] [ href="module.php?name=Lexikon&op=content&tid=3436">ding ] [ href="module.php?name=Lexikon&op=content&tid=3497">display ] [ href="module.php?name=Lexikon&op=content&tid=3565">do ] [ href="module.php?name=Lexikon&op=content&tid=3568">doc ] [ href="module.php?name=Lexikon&op=content&tid=3573">document ] [ href="module.php?name=Lexikon&op=content&tid=3574">documentation ] [ href="module.php?name=Lexikon&op=content&tid=3752">du ] [ href="module.php?name=Lexikon&op=content&tid=3834">E ] [ href="module.php?name=Lexikon&op=content&tid=3865">ec ] [ href="module.php?name=Lexikon&op=content&tid=3896">ed ] [ href="module.php?name=Lexikon&op=content&tid=3929">ee ] [ href="module.php?name=Lexikon&op=content&tid=3946">eg ] [ href="module.php?name=Lexikon&op=content&tid=3953">eh ] [ href="module.php?name=Lexikon&op=content&tid=4008">element ] [ href="module.php?name=Lexikon&op=content&tid=4079">end-user ] [ href="module.php?name=Lexikon&op=content&tid=4111">environment ] [ href="module.php?name=Lexikon&op=content&tid=4148">er ] [ href="module.php?name=Lexikon&op=content&tid=4150">era ] [ href="module.php?name=Lexikon&op=content&tid=4171">es ] [ href="module.php?name=Lexikon&op=content&tid=4199">et ] [ href="module.php?name=Lexikon&op=content&tid=4244">Eva ] [ href="module.php?name=Lexikon&op=content&tid=4316">Express ] [ href="module.php?name=Lexikon&op=content&tid=4317">expression ] [ href="module.php?name=Lexikon&op=content&tid=4319">extend ] [ href="module.php?name=Lexikon&op=content&tid=4497">fi ] [ href="module.php?name=Lexikon&op=content&tid=4520">file ] [ href="module.php?name=Lexikon&op=content&tid=4700">fo ] [ href="module.php?name=Lexikon&op=content&tid=4715">font ] [ href="module.php?name=Lexikon&op=content&tid=4727">for ] [ href="module.php?name=Lexikon&op=content&tid=4828">fr ] [ href="module.php?name=Lexikon&op=content&tid=4940">function ] [ href="module.php?name=Lexikon&op=content&tid=5057">ge ] [ href="module.php?name=Lexikon&op=content&tid=5134">gh ] [ href="module.php?name=Lexikon&op=content&tid=5141">gi ] [ href="module.php?name=Lexikon&op=content&tid=5171">gl ] [ href="module.php?name=Lexikon&op=content&tid=5185">glob ] [ href="module.php?name=Lexikon&op=content&tid=5205">gn ] [ href="module.php?name=Lexikon&op=content&tid=5291">gr ] [ href="module.php?name=Lexikon&op=content&tid=5307">graph ] [ href="module.php?name=Lexikon&op=content&tid=5390">gs ] [ href="module.php?name=Lexikon&op=content&tid=5403">gu ] [ href="module.php?name=Lexikon&op=content&tid=5430">gy ] [ href="module.php?name=Lexikon&op=content&tid=5434">h ] [ href="module.php?name=Lexikon&op=content&tid=5493">hang ] [ href="module.php?name=Lexikon&op=content&tid=5540">hat ] [ href="module.php?name=Lexikon&op=content&tid=5681">hn ] [ href="module.php?name=Lexikon&op=content&tid=5722">hose ] [ href="module.php?name=Lexikon&op=content&tid=5768">hr ] [ href="module.php?name=Lexikon&op=content&tid=5903">IC ] [ href="module.php?name=Lexikon&op=content&tid=5919">icon ] [ href="module.php?name=Lexikon&op=content&tid=5931">id ] [ href="module.php?name=Lexikon&op=content&tid=5956">ie ] [ href="module.php?name=Lexikon&op=content&tid=5986">iff ] [ href="module.php?name=Lexikon&op=content&tid=6013">il ] [ href="module.php?name=Lexikon&op=content&tid=6064">in ] [ href="module.php?name=Lexikon&op=content&tid=6068">inc ] [ href="module.php?name=Lexikon&op=content&tid=6070">include ] [ href="module.php?name=Lexikon&op=content&tid=6143">inheritance ] [ href="module.php?name=Lexikon&op=content&tid=6165">input ] [ href="module.php?name=Lexikon&op=content&tid=6194">int ] [ href="module.php?name=Lexikon&op=content&tid=6203">integrated development environment ] [ href="module.php?name=Lexikon&op=content&tid=6382">interpreter ] [ href="module.php?name=Lexikon&op=content&tid=6413">io ] [ href="module.php?name=Lexikon&op=content&tid=6445">IQ ] [ href="module.php?name=Lexikon&op=content&tid=6449">ir ] [ href="module.php?name=Lexikon&op=content&tid=6468">iron ] [ href="module.php?name=Lexikon&op=content&tid=6482">is ] [ href="module.php?name=Lexikon&op=content&tid=6558">it ] [ href="module.php?name=Lexikon&op=content&tid=6589">J ] [ href="module.php?name=Lexikon&op=content&tid=6760">K ] [ href="module.php?name=Lexikon&op=content&tid=6789">ke ] [ href="module.php?name=Lexikon&op=content&tid=6792">ken ] [ href="module.php?name=Lexikon&op=content&tid=6802">key ] [ href="module.php?name=Lexikon&op=content&tid=6803">keyboard ] [ href="module.php?name=Lexikon&op=content&tid=6906">ky ] [ href="module.php?name=Lexikon&op=content&tid=6918">la ] [ href="module.php?name=Lexikon&op=content&tid=6950">language ] [ href="module.php?name=Lexikon&op=content&tid=7023">ld ] [ href="module.php?name=Lexikon&op=content&tid=7031">leading ] [ href="module.php?name=Lexikon&op=content&tid=7091">Lex ] [ href="module.php?name=Lexikon&op=content&tid=7107">li ] [ href="module.php?name=Lexikon&op=content&tid=7112">library ] [ href="module.php?name=Lexikon&op=content&tid=7203">Lisp ] [ href="module.php?name=Lexikon&op=content&tid=7220">list ] [ href="module.php?name=Lexikon&op=content&tid=7243">lk ] [ href="module.php?name=Lexikon&op=content&tid=7280">local variable ] [ href="module.php?name=Lexikon&op=content&tid=7399">ls ] [ href="module.php?name=Lexikon&op=content&tid=7410">lt ] [ href="module.php?name=Lexikon&op=content&tid=7415">lu ] [ href="module.php?name=Lexikon&op=content&tid=7441">ly ] [ href="module.php?name=Lexikon&op=content&tid=7457">M ] [ href="module.php?name=Lexikon&op=content&tid=7463">ma ] [ href="module.php?name=Lexikon&op=content&tid=7505">macro ] [ href="module.php?name=Lexikon&op=content&tid=7579">mall ] [ href="module.php?name=Lexikon&op=content&tid=7582">man ] [ href="module.php?name=Lexikon&op=content&tid=7583">management ] [ href="module.php?name=Lexikon&op=content&tid=7607">map ] [ href="module.php?name=Lexikon&op=content&tid=7700">MD ] [ href="module.php?name=Lexikon&op=content&tid=7705">MDI ] [ href="module.php?name=Lexikon&op=content&tid=7737">member function ] [ href="module.php?name=Lexikon&op=content&tid=7763">menu ] [ href="module.php?name=Lexikon&op=content&tid=7775">message ] [ href="module.php?name=Lexikon&op=content&tid=7816">meter ] [ href="module.php?name=Lexikon&op=content&tid=7889">Microsoft ] [ href="module.php?name=Lexikon&op=content&tid=7932">mil ] [ href="module.php?name=Lexikon&op=content&tid=8019">mm ] [ href="module.php?name=Lexikon&op=content&tid=8032">mo ] [ href="module.php?name=Lexikon&op=content&tid=8040">mod ] [ href="module.php?name=Lexikon&op=content&tid=8079">module ] [ href="module.php?name=Lexikon&op=content&tid=8167">mp ] [ href="module.php?name=Lexikon&op=content&tid=8228">ms ] [ href="module.php?name=Lexikon&op=content&tid=8257">Mu ] [ href="module.php?name=Lexikon&op=content&tid=8258">mu ] [ href="module.php?name=Lexikon&op=content&tid=8298">multiple inheritance ] [ href="module.php?name=Lexikon&op=content&tid=8384">N ] [ href="module.php?name=Lexikon&op=content&tid=8386">na ] [ href="module.php?name=Lexikon&op=content&tid=8460">nc ] [ href="module.php?name=Lexikon&op=content&tid=8472">ne ] [ href="module.php?name=Lexikon&op=content&tid=8622">nf ] [ href="module.php?name=Lexikon&op=content&tid=8627">ng ] [ href="module.php?name=Lexikon&op=content&tid=8630">ni ] [ href="module.php?name=Lexikon&op=content&tid=8675">no ] [ href="module.php?name=Lexikon&op=content&tid=8745">np ] [ href="module.php?name=Lexikon&op=content&tid=8760">ns ] [ href="module.php?name=Lexikon&op=content&tid=8774">NT ] [ href="module.php?name=Lexikon&op=content&tid=8787">nu ] [ href="module.php?name=Lexikon&op=content&tid=8820">O ] [ href="module.php?name=Lexikon&op=content&tid=8838">object ] [ href="module.php?name=Lexikon&op=content&tid=8864">object-oriented ] [ href="module.php?name=Lexikon&op=content&tid=8871">object-oriented programming ] [ href="module.php?name=Lexikon&op=content&tid=8893">Oc ] [ href="module.php?name=Lexikon&op=content&tid=8964">om ] [ href="module.php?name=Lexikon&op=content&tid=9000">OO ] [ href="module.php?name=Lexikon&op=content&tid=9008">OOP ] [ href="module.php?name=Lexikon&op=content&tid=9014">op ] [ href="module.php?name=Lexikon&op=content&tid=9060">operand ] [ href="module.php?name=Lexikon&op=content&tid=9071">operator ] [ href="module.php?name=Lexikon&op=content&tid=9204">pa ] [ href="module.php?name=Lexikon&op=content&tid=9296">param ] [ href="module.php?name=Lexikon&op=content&tid=9297">parameter ] [ href="module.php?name=Lexikon&op=content&tid=9390">PC ] [ href="module.php?name=Lexikon&op=content&tid=9457">pe ] [ href="module.php?name=Lexikon&op=content&tid=9550">ph ] [ href="module.php?name=Lexikon&op=content&tid=9624">pipe ] [ href="module.php?name=Lexikon&op=content&tid=9651">pl ] [ href="module.php?name=Lexikon&op=content&tid=9738">ply ] [ href="module.php?name=Lexikon&op=content&tid=9740">pm ] [ href="module.php?name=Lexikon&op=content&tid=9762">point ] [ href="module.php?name=Lexikon&op=content&tid=9821">port ] [ href="module.php?name=Lexikon&op=content&tid=9908">pr ] [ href="module.php?name=Lexikon&op=content&tid=10012">product ] [ href="module.php?name=Lexikon&op=content&tid=10023">program ] [ href="module.php?name=Lexikon&op=content&tid=10036">programmer ] [ href="module.php?name=Lexikon&op=content&tid=10042">programming ] [ href="module.php?name=Lexikon&op=content&tid=10144">pt ] [ href="module.php?name=Lexikon&op=content&tid=10198">Q ] [ href="module.php?name=Lexikon&op=content&tid=10253">query ] [ href="module.php?name=Lexikon&op=content&tid=10364">rc ] [ href="module.php?name=Lexikon&op=content&tid=10385">re ] [ href="module.php?name=Lexikon&op=content&tid=10390">real ] [ href="module.php?name=Lexikon&op=content&tid=10466">reference ] [ href="module.php?name=Lexikon&op=content&tid=10467">reference counting ] [ href="module.php?name=Lexikon&op=content&tid=10522">release ] [ href="module.php?name=Lexikon&op=content&tid=10589">rete ] [ href="module.php?name=Lexikon&op=content&tid=10767">ro ] [ href="module.php?name=Lexikon&op=content&tid=10820">row ] [ href="module.php?name=Lexikon&op=content&tid=10887">ru ] [ href="module.php?name=Lexikon&op=content&tid=10918">S ] [ href="module.php?name=Lexikon&op=content&tid=10922">sa ] [ href="module.php?name=Lexikon&op=content&tid=11010">sc ] [ href="module.php?name=Lexikon&op=content&tid=11102">script ] [ href="module.php?name=Lexikon&op=content&tid=11104">scripting language ] [ href="module.php?name=Lexikon&op=content&tid=11150">se ] [ href="module.php?name=Lexikon&op=content&tid=11215">semantics ] [ href="module.php?name=Lexikon&op=content&tid=11281">set ] [ href="module.php?name=Lexikon&op=content&tid=11375">SI ] [ href="module.php?name=Lexikon&op=content&tid=11376">si ] [ href="module.php?name=Lexikon&op=content&tid=11389">sig ] [ href="module.php?name=Lexikon&op=content&tid=11510">sk ] [ href="module.php?name=Lexikon&op=content&tid=11565">Smalltalk ] [ href="module.php?name=Lexikon&op=content&tid=11651">so ] [ href="module.php?name=Lexikon&op=content&tid=11737">sort ] [ href="module.php?name=Lexikon&op=content&tid=11745">source ] [ href="module.php?name=Lexikon&op=content&tid=11746">source code ] [ href="module.php?name=Lexikon&op=content&tid=11789">Spec ] [ href="module.php?name=Lexikon&op=content&tid=11790">spec ] [ href="module.php?name=Lexikon&op=content&tid=11934">st ] [ href="module.php?name=Lexikon&op=content&tid=11990">state ] [ href="module.php?name=Lexikon&op=content&tid=12093">string ] [ href="module.php?name=Lexikon&op=content&tid=12133">su ] [ href="module.php?name=Lexikon&op=content&tid=12206">support ] [ href="module.php?name=Lexikon&op=content&tid=12246">sy ] [ href="module.php?name=Lexikon&op=content&tid=12295">syntax ] [ href="module.php?name=Lexikon&op=content&tid=12359">T ] [ href="module.php?name=Lexikon&op=content&tid=12369">table ] [ href="module.php?name=Lexikon&op=content&tid=12393">talk ] [ href="module.php?name=Lexikon&op=content&tid=12567">text ] [ href="module.php?name=Lexikon&op=content&tid=12588">th ] [ href="module.php?name=Lexikon&op=content&tid=12692">tk ] [ href="module.php?name=Lexikon&op=content&tid=12708">tm ] [ href="module.php?name=Lexikon&op=content&tid=12721">to ] [ href="module.php?name=Lexikon&op=content&tid=12736">tool ] [ href="module.php?name=Lexikon&op=content&tid=12787">tr ] [ href="module.php?name=Lexikon&op=content&tid=12844">tree ] [ href="module.php?name=Lexikon&op=content&tid=12970">type ] [ href="module.php?name=Lexikon&op=content&tid=12986">ua ] [ href="module.php?name=Lexikon&op=content&tid=13008">ug ] [ href="module.php?name=Lexikon&op=content&tid=13030">um ] [ href="module.php?name=Lexikon&op=content&tid=13146">up ] [ href="module.php?name=Lexikon&op=content&tid=13175">us ] [ href="module.php?name=Lexikon&op=content&tid=13188">user ] [ href="module.php?name=Lexikon&op=content&tid=13229">V ] [ href="module.php?name=Lexikon&op=content&tid=13252">va ] [ href="module.php?name=Lexikon&op=content&tid=13260">value ] [ href="module.php?name=Lexikon&op=content&tid=13274">var ] [ href="module.php?name=Lexikon&op=content&tid=13275">variable ] [ href="module.php?name=Lexikon&op=content&tid=13310">ve ] [ href="module.php?name=Lexikon&op=content&tid=13366">vi ] [ href="module.php?name=Lexikon&op=content&tid=13398">vines ] [ href="module.php?name=Lexikon&op=content&tid=13725">win ] [ href="module.php?name=Lexikon&op=content&tid=13736">Windows ] [ href="module.php?name=Lexikon&op=content&tid=13762">Windows NT ] [ href="module.php?name=Lexikon&op=content&tid=13810">woman ] [ href="module.php?name=Lexikon&op=content&tid=13877">ws ] [ href="module.php?name=Lexikon&op=content&tid=14024">Y ]






Go Back ]

Free On-line Dictionary of Computing

Copyright © by OnlineWoerterBuecher.de - (20898 Reads)

All logos and trademarks in this site are property of their respective owner.

Page Generation in 0.1244 Seconds, with 16 Database-Queries
Zurück zur Startseite