/gorun

a fork of Gustavo Niemeyer's gorun

Primary LanguageGoGNU General Public License v3.0GPL-3.0

gorun - a fork of Gustavo Niemeyer's gorun

Homepage

INSTALL

gomake install

EXAMPLE

hello.go:

#!/usr/bin/env gorun

package main

import fmt "fmt"

func main() {
	fmt.Println("Hello World!")
}

Run:

./hello.go