Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 623 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 623 Bytes

HereForBeer

CSCI 3060 / SOFE 3980 Group Project Repository

Linux Instructions (Front End)

  • make sure to have g++ installed
  • cd into cloned directory
  • run make to compile
  • finally, run ./a.out

Style Guide

  • 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
}