gomodtest/tempconv.go

17 строки
432 B
Go
Исходник Обычный вид История

2022-01-11 18:14:02 +00:00
// Package gomodtest Пакет tempconv выполняет преобразование температур.
package gomodtest
import "fmt"
type Celsius float64
type Fahrenheit float64
const (
AbsoluteZeroC Celsius = -273.15
FreezingC Celsius = 0
BoilingC Celsius = 100
)
func (c Celsius) String() string { return fmt.Sprintf("%g°C", c) }
func (f Fahrenheit) String() string { return fmt.Sprintf("%g°F", f) }