Skip to content

Instantly share code, notes, and snippets.

@mrphilroth
Created December 21, 2015 20:59
Show Gist options
  • Save mrphilroth/dc82fd67b11d554699d6 to your computer and use it in GitHub Desktop.
Save mrphilroth/dc82fd67b11d554699d6 to your computer and use it in GitHub Desktop.
Simple Go file to help diagnose go-plus issue
package main
import "log"
func main() {
something := 2
somethingElse := 3
veryImportantSomething := something * somethingElse
log.Println(veryImportantSomething)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment