Logo

Programming-Idioms

History of Idiom 79 > diff from v9 to v10

Edit summary for version 10 by :

Version 9

2015-09-05, 16:43:09

Version 10

2015-09-17, 05:58:43

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Code
var
  x: integer = 8;
  y: single;
begin
  y := x;
end;
Demo URL
https://ideone.com/6NAtXx