Update action
All checks were successful
Test Go Action / use-go-action (push) Successful in 0s

This commit is contained in:
2025-11-24 01:32:17 +03:00
parent 532c094dbd
commit 4c148a4dd5
2 changed files with 8 additions and 3 deletions

View File

@@ -1,7 +1,12 @@
package main
import "fmt"
import (
"fmt"
"os"
)
func main() {
fmt.Println("Hello world")
for _, v := range os.Environ() {
fmt.Println(v)
}
}