Skip to content

Instantly share code, notes, and snippets.

@tance77
tance77 / example
Last active December 19, 2015 08:18
exampel v
//This is a variable there are int, char, float, double, bool (true false) and more
/*------------------variables---------------------*/
int x = 0; //this is an integer
char c; // this is a character variable
bool frogs = true; //these can be set to true or fasle
double a = 0; //this is just a bigger storage variable than an int.
/*------------------end variables---------------------*/