From efb1a2bea3502e81a0678614552cf17c26f6de05 Mon Sep 17 00:00:00 2001 From: Igor V Belousov Date: Tue, 11 Jan 2022 19:20:42 +0300 Subject: [PATCH] mod tempconv0 beautiful comments ch2.5 --- ch2/tempconv0.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ch2/tempconv0.go b/ch2/tempconv0.go index d668edd..2b9c8d3 100644 --- a/ch2/tempconv0.go +++ b/ch2/tempconv0.go @@ -28,10 +28,10 @@ func main() { var c Celsius var f Fahrenheit - fmt.Println(c == 0) // true - fmt.Println(f >= 0) // true - //fmt.Println(c == f) // Ошибка компиляции: несоответствие типов + fmt.Println(c == 0) // true + fmt.Println(f >= 0) // true fmt.Println(c == Celsius(f)) // true ! потому что c и f равны 0 + //fmt.Println(c == f) // Ошибка компиляции: несоответствие типов c = FToC(212.0) fmt.Println(c.String()) // 100°C