< Software Engineers Handbook < Language Dictionary

<Language Name Here>

<Describe the language, include a brief history if possible.>

Type

<Describe if this is a scripting, mini language, full language: procedural or functional.>

Execution Entry Point

<Describe how/where the program is started i.e. C++ main()>

General Syntax

<Try to give a high level description of the contents of a typical line of code. An assignment example may be appropriate such as

a = b;

>

Comments

<Describe and show the syntax for comments such as

// this is an inline comment.  Everything after the // is a comment.

Block comments are specified by a starting /* and ending */ They can span multiple lines.

/*
 * this is a block comment 
 */

>

Variable Declarations

<Describe if variable declarations are necessary, and give examples of the different types, such as

declare i as an integer

int i;

two ways to declare i as an integer and give it an initial value of 0

int i = 0;
int i(0);

>

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

<Describe how the files, libararies, and parts are typically divided and arranged.>

Tips

<Please include tips that make it easier to switch to this language from another language.>

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)>

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.