All checks were successful
Test Go Action / use-go-action (push) Successful in 0s
13 lines
109 B
Go
13 lines
109 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
for _, v := range os.Environ() {
|
|
fmt.Println(v)
|
|
}
|
|
}
|