Difference between revisions of "Extended Pascal"

From Free Pascal wiki
Jump to navigationJump to search
(external)
(Reserved Words)
Line 2: Line 2:
  
 
Support in Free Pascal for Extended Pascal is planned, and will be via [[Compiler Mode|compiler mode]] [[Mode extpas|extpas]].
 
Support in Free Pascal for Extended Pascal is planned, and will be via [[Compiler Mode|compiler mode]] [[Mode extpas|extpas]].
 +
 +
== Reserved Words ==
 +
In addition to all the [[Standard Pascal#Reserved Words|reserved words of Standard Pascal]] the following (referred to as ''word-symbols'' in the ISO 10206 document) have been added to Extended Pascal:
 +
 +
* and_then
 +
* bindable
 +
* export
 +
* import
 +
* module
 +
* only
 +
* or_else
 +
* pow
 +
* protected
 +
* qualified
 +
* value
  
 
== External links ==
 
== External links ==
 
* [http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=18237 ISO/IEC 10206:1991]: Extended Pascal standard
 
* [http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=18237 ISO/IEC 10206:1991]: Extended Pascal standard
 +
  
  
  
 
[[Category:Pascal]]
 
[[Category:Pascal]]

Revision as of 01:47, 17 September 2017

Extended Pascal is the name given to the version of Pascal specified in International Organization for Standardization (ISO) standard 10206. It specifies an enhanced version of the Standard Pascal language that was specified in the ISO 7185 specification. The 214-page ISO 10206 document was published in May 1991 and not been revised since.

Support in Free Pascal for Extended Pascal is planned, and will be via compiler mode extpas.

Reserved Words

In addition to all the reserved words of Standard Pascal the following (referred to as word-symbols in the ISO 10206 document) have been added to Extended Pascal:

  • and_then
  • bindable
  • export
  • import
  • module
  • only
  • or_else
  • pow
  • protected
  • qualified
  • value

External links