Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Pascal
uses SysUtils;
var
  _s: String;
  _i: Integer;
begin
  _s := IntToStr(_i);
end.
Str(i,s);

No dependecies on any library.
Should work in all Pascal dialects.
S : String := Integer'Image (I);

New implementation...