Skip to content

Instantly share code, notes, and snippets.

View LetSleepingFoxesLie's full-sized avatar
🦊
Procrastinating!

LetSleepingFoxesLie

🦊
Procrastinating!
  • I'm a freelance content writer, bro.
View GitHub Profile
@miguelmota
miguelmota / Card.h
Created November 23, 2016 02:43
C++ basic High or Low card game
#include <iostream>
#include <ctime>
using namespace std;
class Card {
private:
int rank;
int suit;