/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue60582.go
15 строк
276 B
Cuong Manh Le
cmd/compile: allow ir.OMIN/ir.OMAX in mayCall
05 июн 2023, 06:11
05 июн 2023, 06:11
96d1680
Код
Авторство
О чём код?
// build // Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import "fmt" func main() { a, b := 5, 7 fmt.Println(min(a, b)) fmt.Println(max(a, b)) }