Source file src/cmd/go/internal/doc/testdata/play_test.go
1 // Copyright 2026 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package pkg_test 6 7 import "fmt" 8 9 // Playable example. 10 func Example_playable() { 11 fmt.Println("Playable example output") 12 // Output: Playable example output 13 } 14