Skip to content

Instantly share code, notes, and snippets.

@RecuencoJones
Last active September 27, 2019 10:33
Show Gist options
  • Save RecuencoJones/9960ffcc932db406ebf97f5e52615253 to your computer and use it in GitHub Desktop.
Save RecuencoJones/9960ffcc932db406ebf97f5e52615253 to your computer and use it in GitHub Desktop.
Test go imports from gist
package utils
import "fmt"
func Greet(subject string) {
fmt.Println(subject)
}
package main
import (
gist "gist.github.com/9960ffcc932db406ebf97f5e52615253.git"
)
func main() {
gist.Greet("David")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment