mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-07-10 20:02:32 +02:00
12 lines
129 B
Go
12 lines
129 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
configValue := os.Getenv("HELLO")
|
|
fmt.Printf("Hello %v\n", configValue)
|
|
}
|