blob: bf86ee912ba976fd470a3181d5dc357abae1be29 [file] [log] [blame]
Russ Coxa1391c22009-09-02 23:26:13 -07001// $G $D/$F.go && $L $F.$A && ./$A.out
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9var s [8]string
10
11func
Robert Griesemer60d4e302009-12-10 11:25:54 -080012init() {
Russ Coxa1391c22009-09-02 23:26:13 -070013 s = [...]string{ "now", "is", "the", "time", "to", "fix", "this", "bug"}
14}
15
16func
Robert Griesemer60d4e302009-12-10 11:25:54 -080017main() {
Russ Coxa1391c22009-09-02 23:26:13 -070018}