Open main menu

CDOT Wiki β

Changes

OOP344 20131 - Team A

327 bytes added, 18:09, 12 February 2013
Team A
|[[User:Lucas Hugh Mcintosh|Lucas]]||McIntosh||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:lhmcintosh@myseneca.ca?subject=oop344 lhmcintosh]||[[Special:Contributions/Lucas Hugh Mcintosh|Lucas Hugh Mcintosh]]||Zardvark||Zardvark|| [http://lhmcintosh.blogspot.ca/ Lucas' Chronic Misadventures in Technology]
|}
 
==PROJECT STYLE==
 
*Indentation
**TAB key set 2 and space
*Blocks
**function(....) {
}
*Variable Naming
** first word lowercase, subsequent words will have first letter capitalized
 
 
for instance:
 
switch(value) {
case 1:
doSomething();
 
case 2:
doSomethingElse();
break;
 
default:
doDefaultThing();
}