I hereby claim:
- I am philipcastiglione on github.
- I am pcastiglione (https://keybase.io/pcastiglione) on keybase.
- I have a public key ASBrqqrge6T5EBU1GOE9YxH7LAZy3AUE1Ws0oRVrlg6vlgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/** | |
* Sweet merge-sort action: https://youtu.be/3WWtrx30mTk | |
*/ | |
#include "splashkit.h" | |
#define NUM_VALS 40 | |
void draw_values(const int values[], int size) | |
{ | |
int x = 0; |
/** | |
* A short program to calculate the approximate length of a journey around the | |
* globe in a hot air balloon. | |
* | |
* Authored by Philip Castiglione | |
*/ | |
#include "splashkit.h" | |
using namespace std; |
/* VT100 terminal reset (<ESC>c) */ | |
console.log('\033c'); | |
/* numbers comparations */ | |
> '2' == 2 | |
true | |
> '2' === 2 |