View in color | License | Download script | History | Other scripts by: ajmartin |
10-Dec 14:56 UTC
[0.04] 10.64k
[0.04] 10.64k
fahrenheit.rREBOL [
Title: "Fahrenheit"
Date: 3-Jul-2002
Name: 'Fahrenheit
Version: 1.0.0
File: %fahrenheit.r
Author: "Andrew Martin"
Purpose: "Converts Temperature in Celcius to Fahrenheit."
eMail: %Al--Bri--xtra--co--nz
Web: http://valley.150m.com
Example: [
Fahrenheit 0
Fahrenheit 100
]
library: [
level: 'beginner
platform: none
type: 'tool
domain: 'math
tested-under: none
support: none
license: none
see-also: none
]
]
Fahrenheit: func [
"Converts Temperature in Celcius to Fahrenheit."
Temperature [number!] "Temperature in degrees Celcius."
][
Temperature * 9 / 5 + 32
] Notes
|