Files
Web_BLVLOG_Server_Mvc_Prod/WebApplication3/WeatherForecast.fs

12 lines
214 B
Forth
Raw Normal View History

2025-11-20 16:20:04 +08:00
namespace WebApplication3
open System
type WeatherForecast =
{ Date: DateTime
TemperatureC: int
Summary: string }
member this.TemperatureF =
32.0 + (float this.TemperatureC / 0.5556)