Re: CODE : Temprature Conversion
- Posted by Einar Mogen <nord.staernes at ROLLAG.MAIL.TELIA.COM> Jun 10, 1998
- 738 views
>function KtoF(atom Kelvin) > return ( celcius + 273) * 1.8 + 32 >end function Guess you typed this directly, this one should probably read: function KtoF(atom kelvin) return (kelvin + 273) * 1.8 + 32 end function Einar Mogen