Hacker News new | past | comments | ask | show | jobs | submit login

Oh, that's quite on the mark!

Nitpicking: I'm not fond of reserving keywords like len or append.

  len(arr)
  append(arr, v)
Better is

  arr.len
  arr.append(v)
Also

  x: [dynamic]int
is quite verbose

Maybe better would be

  x: [int]   //dyn
  x: [int,2] //fixed



Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: