Logo

Programming-Idioms

  • C++
s = str(i)
#include <string>
auto s = std::to_string(i);
S : String := Integer'Image (I);

New implementation...