I have implemented 'Int to Float' and 'Float to Int' explicit type casting in Brilisp which fixes #67.
The syntax for it is (set (f_n float) (sitofp n)) in case integer to float and (set (f_n int) (fptosi n)) in case of float to integer explicit conversions.
I have implemented 'Int to Float' and 'Float to Int' explicit type casting in Brilisp which fixes #67. The syntax for it is
(set (f_n float) (sitofp n))
in case integer to float and(set (f_n int) (fptosi n))
in case of float to integer explicit conversions.