CSCI 3060 / SOFE 3980 Group Project Repository
- make sure to have g++ installed
cd
into cloned directory- run
make
to compile - finally, run
./a.out
- Use spaces instead of tabs
- Use 2 spaces
- Leave opening bracket on the same line as the condition/statement
// good
if (false) {
// will never get here
}
// bad
if (false)
{
// still will never get here
}
- Please set up your text editor so that it trims all white spaces on save - sublime instructions