Skip to content

Instantly share code, notes, and snippets.

@kezzardrix
Created May 27, 2017 02:53
Show Gist options
  • Select an option

  • Save kezzardrix/45bb65e22ea647f17a69f5409e3894b3 to your computer and use it in GitHub Desktop.

Select an option

Save kezzardrix/45bb65e22ea647f17a69f5409e3894b3 to your computer and use it in GitHub Desktop.
string toDoubleDigit(int num){
string str;
if(num < 10)str = "0" + ofToString(num);
else str = ofToString(num);
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment