Skip to content

Instantly share code, notes, and snippets.

View TheMorgz's full-sized avatar
🏠
Working from home

Morgan Shadung TheMorgz

🏠
Working from home
View GitHub Profile
@TheMorgz
TheMorgz / gokata.go
Created October 29, 2019 21:18
Golang Exercise to practice structs, interfaces, and methods
package main
import (
"fmt"
"math"
)
type cube struct {
length float64
}