الملفات
Ghaymah-go-starter/main.go
2025-04-15 15:29:03 +02:00

15 أسطر
280 B
Go

package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "MARHABA in Ghaymah")
})
fmt.Println("Server starting on port 8080...")
http.ListenAndServe(":8080", nil)
}