Skip to content

Instantly share code, notes, and snippets.

View pieroapretto's full-sized avatar

Piero A. Pretto pieroapretto

View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

//Intermediate Midterm
// 1. How do you make comments and why do you make them?
//You make comments with '//'. It helps to keep track of your logic for future examination.