12 lines
202 B
Forth
12 lines
202 B
Forth
namespace api
|
|
|
|
open System
|
|
|
|
type WeatherForecast =
|
|
{ Date: DateTime
|
|
TemperatureC: int
|
|
Summary: string }
|
|
|
|
member this.TemperatureF =
|
|
32.0 + (float this.TemperatureC / 0.5556)
|