Set Environment Variable

Examples Filter
package main

import (
    "os"
)

func main() {

    os.Setenv("FOO", "1")
}