/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue21808.go
17 строк
304 B
Keith Randall
cmd/compile: fix println()
08 сен 2017, 23:10
08 сен 2017, 23:10
02deb77
Код
Авторство
О чём код?
// run // Copyright 2017 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. // Make sure println() prints a blank line. package main import "fmt" func main() { fmt.Println("A") println() fmt.Println("B") }