How to convert a int type into a String?
In Juce.
int a = 3;
auto str = String(a);
DBG( "here is an int: " << str );
1 Like
How to convert a int type into a String?
In Juce.
int a = 3;
auto str = String(a);
DBG( "here is an int: " << str );