💾 Archived View for tilde.team › ~eikonal › cgidemo › test1x › test11.go captured on 2022-03-01 at 16:32:33.
-=-=-=-=-=-=-
package main import ( "fmt" "os" ) func main(){ query_val, query_present := os.LookupEnv("QUERY_STRING") if query_present { fmt.Print("20 text/gemini\r\n") fmt.Print("Hello,",query_val) } else { fmt.Print("11 What is your name?\r\n") } }