1
0
Fork 0
mirror of https://code.forgejo.org/actions/go-versions synced 2025-07-04 15:55:59 +02:00

Implement builders to build Go from source code

This commit is contained in:
MaksimZhukov 2020-06-09 22:52:06 +03:00
parent 8c06ab5f1e
commit 6cf25b0561
21 changed files with 836 additions and 0 deletions

View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, world.")
}