# README
unexported
import "github.com/phsym/gomarkdoc/testData/unexported"
Package unexported contains some simple code to exercise basic scenarios for documentation purposes.
Index
type Num
Num is a number.
It is just a test type so that we can make sure this works.
type Num int
func AddNums
func AddNums(num1, num2 Num) Num
AddNums adds two Nums together.
func addInternal
func addInternal(num1, num2 Num) Num
addInternal is a private version of AddNums.
func (Num) Add
func (n Num) Add(num Num) Num
Add adds the other num to this one.
Generated by gomarkdoc
# Functions
AddNums adds two Nums together.
# Type aliases
Num is a number.