Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 281 Bytes

File metadata and controls

27 lines (15 loc) · 281 Bytes

mooseutils

A library for general utillity functions

PrettyPrint Usage

Pretty print structs

package main

import "github.com/elsgaard/mooseutils"

type User struct {
	Name string
}

func main() {

	user := &User{Name: "Frank"}
	mooseutils.PrettyPrint(user)

}