💾 Archived View for tilde.team › ~eikonal › cgidemo › test1x › test10.go captured on 2023-04-20 at 00:54:37.

View Raw

More Information

⬅️ Previous capture (2022-03-01)

-=-=-=-=-=-=-

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("10 What is your name?\r\n")
	}
}