go-binary-only-package
go-binary-only-package copied to clipboard
miss a use binary package example
Could you please add a example of how to use binary package? Thank you.
I already wrote one, if you don't mind, I can make a merge request.
package main
import (
"fmt"
"hello"
)
func main() {
fmt.Println(" start program ")
fmt.Println(" print program :", hello.Hello("hello world"))
}
Please make PR, I will merge
@tcnksm Thanks. Already submit one. I am now developing a tool for golang-binary-package-generator. :P
@tcnksm Thank you for the your example. I have made a deploy script for golang-binary-package-generator, as the example is not straight to add here.