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