Difference between revisions of "Guide for good coding"

From Planets
Jump to: navigation, search
(Created page with "== Naming variables convention == == How to create a new module/subroutine == == How to pass variable to subroutine (by argument or by module) == == Loop index convention =...")
 
Line 1: Line 1:
== Naming variables convention ==
 
 
 
== How to create a new module/subroutine ==
 
== How to create a new module/subroutine ==
  
 
== How to pass variable to subroutine (by argument or by module) ==
 
== How to pass variable to subroutine (by argument or by module) ==
 +
 +
== Naming variables convention ==
  
 
== Loop index convention ==
 
== Loop index convention ==

Revision as of 11:20, 5 January 2023

How to create a new module/subroutine

How to pass variable to subroutine (by argument or by module)

Naming variables convention

Loop index convention

Efficient loop coding

How to use the Intent

How to comment code

General guide