#error using func from another package
10 messages · Page 1 of 1 (latest)
In order to use functions, variables, types, whatever from another package, they must be exported
In Go symbols are exported simple by uppercaseing the first character
everything you want to access in another package needs to be capitalized
Thanks !
Thanks!
It is really weird