Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 605 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 605 Bytes

godog

codecov

This is a simple go module that is used in a the godog workshop

The workshop is meant to be an easy onboarding and training to help software engineers quickly upskill on the go programming language.

Examples

package main

import (
    "github.com/hattan/godog/animals"
)

func main() {
    dog, err := animals.NewDog("Fido", 2, animals.Corgi)
    if err != nil {
        panic(err)
    }

    dog.Display()
}