Difference between revisions of "Standard Pascal/es"

From Lazarus wiki
Jump to navigationJump to search
(New page: category:PascalCategory:CastellanoCategory:Español {{Standard_Pascal}} '''Standard Pascal''' is a specification for the Pascal language that defines the minimum level tha...)
 
Line 2: Line 2:
 
{{Standard_Pascal}}
 
{{Standard_Pascal}}
  
'''Standard Pascal''' is a specification for the [[Pascal]] language that defines the minimum level that a [[Compiler|Pascal compiler]] must support in order to be a true compiler of the Pascal language. The following are the standard [[Keyword|keywords]] that all compilers must support:
+
   '''Pascal estándar''' es l especificación del lenguaje [[Pascal]] que define el nivel mínimo que el [[Compiler|compilador de Pascal]] debe soportar para ser calificado cómo un auténtico compilador de lenguaje Pascal. Estas son las [[Keyword|palabras clave]] que todos los compiladores deben soportar:
  
 
:[[Begin|begin]] · [[End|end]] · [[For|for]] · [[goto]] · [[If|if]] · [[label]] ·  [[Repeat|repeat]] · [[Then|then]] ·  [[Until|until]] · [[While|while]] · [[Do|do]] · [[Type|type]] · [[Var|var]]
 
:[[Begin|begin]] · [[End|end]] · [[For|for]] · [[goto]] · [[If|if]] · [[label]] ·  [[Repeat|repeat]] · [[Then|then]] ·  [[Until|until]] · [[While|while]] · [[Do|do]] · [[Type|type]] · [[Var|var]]
  
The following symbols are also part of the language:
+
   Los siguientes símbolos son también parte del lenguaje:
  
:<nowiki>:=</nowiki> ([[Becomes|becomes]])  &middot; = ([[Equal|equal]])  &middot; > ([[Greater than|greater than]])  &middot; < ([[Less than|less than]]) <> ([[Not equal|not equal]])
+
:<nowiki>:=</nowiki> ([[Becomes|asignación]])  &middot; = ([[Equal|igual]])  &middot; > ([[Greater than|mayor que]])  &middot; < ([[Less than|menor que]]) <> ([[Not equal|distinto]])
  
There are additional keywords which are not technically part of the Standard Pascal language but are used by [[FPC]] either for additional functionality such as for implementing objects, compatibility with the error recovery concepts exposed by C++, or to provide compatibility with [[Borland Pascal]] and earlier Pascal compilers.   These keywords include:
+
&nbsp;&nbsp;&nbsp;Hay palabras adicionales, que técnicamente, no son parte de Pascal estándar pero que son utilizadas por [[FPC]] ya sea para funciones adicionales para implantar objetos, compatibilidad con los conceptos de recuperación de errores expuestos por C++ o para proveer compatibilidad con [[Borland Pascal]] and earlier Pascal compilers. These keywords include:
  
 
:[[Implementation|implementation]] &middot; [[Finally|finally]] &middot; [[Try|try]] &middot;  [[Unit|unit]].
 
:[[Implementation|implementation]] &middot; [[Finally|finally]] &middot; [[Try|try]] &middot;  [[Unit|unit]].
  
== Types ==
+
== Tipos ==
There are the standard types:<p>
+
&nbsp;Estos son los tipos estándar:<p>
 
[[Integer|integer]] &middot; [[smallint]] &middot;  [[longint]] &middot;  [[real]] &middot;  [[Boolean|boolean]] &middot;  [[String|string]] &middot;  [[Char|char]]
 
[[Integer|integer]] &middot; [[smallint]] &middot;  [[longint]] &middot;  [[real]] &middot;  [[Boolean|boolean]] &middot;  [[String|string]] &middot;  [[Char|char]]
  
  
 
[[category:Pascal]]
 
[[category:Pascal]]

Revision as of 15:20, 7 July 2008

العربية (ar) Deutsch (de) English (en) español (es) suomi (fi) français (fr) Bahasa Indonesia (id) 日本語 (ja) português (pt) русский (ru) 中文(中国大陆)‎ (zh_CN)

   Pascal estándar es l especificación del lenguaje Pascal que define el nivel mínimo que el compilador de Pascal debe soportar para ser calificado cómo un auténtico compilador de lenguaje Pascal. Estas son las palabras clave que todos los compiladores deben soportar:

begin · end · for · goto · if · label · repeat · then · until · while · do · type · var

   Los siguientes símbolos son también parte del lenguaje:

:= (asignación) · = (igual) · > (mayor que) · < (menor que) <> (distinto)

   Hay palabras adicionales, que técnicamente, no son parte de Pascal estándar pero que son utilizadas por FPC ya sea para funciones adicionales para implantar objetos, compatibilidad con los conceptos de recuperación de errores expuestos por C++ o para proveer compatibilidad con Borland Pascal and earlier Pascal compilers. These keywords include:

implementation · finally · try · unit.

Tipos

 Estos son los tipos estándar:

integer · smallint · longint · real · boolean · string · char