mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08:00
12 lines
131 B
Go
12 lines
131 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
type Field [10]int32
|
|
|
|
// @Test 0 0 = 10
|
|
func main(a, b int32) int {
|
|
var arr Field
|
|
return len(arr)
|
|
}
|