https://github.com/mcandre/gorun
a fork of Gustavo Niemeyer's gorun
https://github.com/mcandre/gorun
Last synced: about 1 year ago
JSON representation
a fork of Gustavo Niemeyer's gorun
- Host: GitHub
- URL: https://github.com/mcandre/gorun
- Owner: mcandre
- License: gpl-3.0
- Created: 2011-10-09T23:55:19.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-12-16T16:47:10.000Z (over 13 years ago)
- Last Synced: 2025-02-01T23:36:17.530Z (over 1 year ago)
- Language: Go
- Homepage: https://code.launchpad.net/~niemeyer/gorun/trunk
- Size: 119 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
gorun - a fork of Gustavo Niemeyer's gorun
[Homepage](https://code.launchpad.net/~niemeyer/gorun/trunk)
INSTALL
gomake install
EXAMPLE
hello.go:
#!/usr/bin/env gorun
package main
import fmt "fmt"
func main() {
fmt.Println("Hello World!")
}
Run:
./hello.go