Pascal
Here is the wikipedia page.
Type
Pascal is a full procedural programming language.
Execution Entry Point
Program Name (input, output) begin end.
General Syntax
a:=b;
Comments
(* this is a comment *)
or
{ This is a comment }
or
//This is a comment
Variable Declarations
Variables declarations are necessary:
var
i: integer ;
k: boolean;
d:Real;
Method Declaration/Implementation
<Describe how methods/functions/procedures are declared and implemented.>
Scope
<Describe how scope is defined.>
Conditional Statements
<Describe the conditional statements in text and present
code examples.
(put a space in the front of the line to format as code)>
Looping Statements
<Describe looping statements in English and present code examples.>
Output Statements
<Describe how to output Hello world! including the new-line with or without a carriage return.> úΜÈŔŔŶ—
Error Handling/Recovery
<Describe error handling and recovery. Give examples as appropriate.>
Containers
<List containers or references to lists of containers available natively for this language. List ways to incorporate containers if they are not native to the language.>
Algorithms
<List algorithms or references to lists of algorithms available natively for this language. List ways to incorporate algorithms if they are not native to the language. Or, if not available, describe that.>
Garbage collection
<Describe whether the garbage collection is automatic or manual.>
Physical Structure
Tips
- i have found it helpful when i switched from qbasic to pascal to just sit down and write 10 small or large programs for each of the most needed things in pascal example,*for loops,variable declaration,while loops*may be called something else*
Web References
<List additional references on the web. Please include for what level reader the references are appropriate. (beginner/intermediate/advanced)>
Books and Articles
<List additional books and articles that may be helpful. Please include for what level reader the references are appropriate. (beginner/intermediate/advanced)>