Files
learngo/interfaces/09-stringer/puzzle.go
2019-09-01 22:05:09 +03:00

15 lines
326 B
Go

// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
type puzzle struct {
// game satisfies the fmt.Stringer
// because the product satisfies the fmt.Stringer
product
}