Hi
Is it possible to set environment variables while running my app like...
go run -env_var1="val1" main.go
And then access env_var value as -
os.Getenv("env_var1")
I know, we can access command line arguments in go and set it manually as environment variables. But am asking if there is already some feature like this in the language.