Difference between revisions of "OOP344 20131 - Team A"

From CDOT Wiki
Jump to: navigation, search
(Team A)
(PROJECT STYLE)
Line 34: Line 34:
 
   case 2:
 
   case 2:
 
     doSomethingElse();
 
     doSomethingElse();
      break;
+
    break;
  
 
   default:
 
   default:
 
     doDefaultThing();
 
     doDefaultThing();
 
}
 
}

Revision as of 18:10, 12 February 2013

Team A

CONTACTS

EMAIL TEAM

OOP344 - Winter of 2013 TEAM A MEMBERS
First Name Last Name Team Name Section Seneca Id wiki id IRC nick GITHUB ID Blog URL
Benjamin Snively Team A B bssnively Benjamin Snively UltraVioletLabel UltraVioletLabel The Art Of Goto
Ken Zhou Team A B fjzhou Fen Jian Zhou noobiedev noobiedev www.noobiedev.com
Lucas McIntosh Team A B lhmcintosh Lucas Hugh Mcintosh Zardvark Zardvark 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();

}