Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 487 Bytes

File metadata and controls

35 lines (24 loc) · 487 Bytes

Go Example

This is a simple Go example package.

Installation

To install the package, run:

go get github.com/username/go-example

Installation Commandline Tool

go install github.com/username/go-example/cmd/go-example

go-example
# output:
# current working directory:  /path/to/your/current/directory

Usage

package main

import (
  print "github.com/username/go-example/print"
)

func main() {
  print.ExamplePrint("hello world", 3)
}