16 lines
600 B
Go
16 lines
600 B
Go
|
// This is a "stub" file. It's a little start on your solution.
|
||
|
// It's not a complete solution though; you have to write some code.
|
||
|
|
||
|
// Package twofer should have a package comment that summarizes what it's about.
|
||
|
// https://golang.org/doc/effective_go.html#commentary
|
||
|
package twofer
|
||
|
|
||
|
// ShareWith needs a comment documenting it.
|
||
|
func ShareWith(string) string {
|
||
|
// Write some code here to pass the test suite.
|
||
|
// Then remove all the stock comments.
|
||
|
// They're here to help you get started but they only clutter a finished solution.
|
||
|
// If you leave them in, reviewers will protest!
|
||
|
return ""
|
||
|
}
|