...

/

Public and Private Declarations

Public and Private Declarations

Learn about public and private declarations and their differences in Go.

We'll cover the following...

Introduction

Many modern languages provide a set of options when declaring constants/variables/functions/methods that detail when a method can be called. Go simplifies these visibility choices down to two types:

...