Files
2025-11-20 16:20:37 +08:00

12 lines
214 B
Forth

namespace WebApplication3
open System
type WeatherForecast =
{ Date: DateTime
TemperatureC: int
Summary: string }
member this.TemperatureF =
32.0 + (float this.TemperatureC / 0.5556)