Difference between revisions of "Main Page"

From ProgrammingExamples
Jump to: navigation, search
m (Coding Standards)
Line 12: Line 12:
 
** Good: dispatchTable, dispatch_table
 
** Good: dispatchTable, dispatch_table
 
** Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
 
** Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
* Comment, comment, comment!
+
* Comment (only) to clarify your code or your intention.
  
 
== Languages ==
 
== Languages ==

Revision as of 02:35, 24 November 2010

Welcome to ProgrammingExamples.net!

This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages. Please feel free to modify the existing examples, and add new examples!

Please read Editing Wiki Pages and Do's and Don'ts before getting started.

Coding Standards

We don't want to get too carried away here, but below are some guidelines.

  • Use a sensible and internally consistent indentation scheme
  • Use "best coding practices" for your language
  • Use descriptive, fully spelled variable names (in English please)
    • Good: dispatchTable, dispatch_table
    • Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
  • Comment (only) to clarify your code or your intention.

Languages

GUI Systems

Visualization/Graphics/Images