1// run 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 a = []int { 1, 2, 3 } 10 11func main() { 12 if len(a) != 3 { panic("array len") } 13 // print(a[0], " ", a[1], " ", a[2], "\n") 14 if a[0] != 1 || a[1] != 2 || a[2] != 3 { panic("array contents") } 15} 16