Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Rust
let s = i.to_string();

s has type String
let s = format!("{}", i);

s has type String
S : String := Integer'Image (I);

New implementation...