As you know:
- you can use uft8 encoding into the name of functions or variables.
- the visibility of the functions or variables depends of its name (case
of first letter).
For two simple examples in French
This function is exported outside the package
func Égal(a, b int) bool {
return a == b
}
This function is not exported:
func égal(a, b int) bool {
return a == b
}
For my information (I know I am curious :) ), how can we do the same with
Chinese language?
Does it exist lower/lower case for language as Chinese language?
Thx in adv for your response,
Regards,
Jérôme
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.