Logo

Programming-Idioms

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

New implementation...