Hacker News new | ask | show | jobs
by jesstaa 4997 days ago
Arrays are a fixed size. eg. t:=[5]int{1,2,3,4,5}

Go can also do the counting for you. eg. t:=[...]int{1,2,3,4,5}

1 comments

Oh, nice, thanks!