server_FIRST.go 438 B

123456789101112131415161718192021
  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "net/http"
  6. _ "strconv"
  7. )
  8. func main() {
  9. http.HandleFunc("/", sayhello) // Устанавливаем роутер
  10. err := http.ListenAndServe(":8080", nil) // устанавливаем порт веб-сервера
  11. if err != nil {
  12. log.Fatal("ListenAndServe: ", err)
  13. }
  14. }
  15. func sayhello(w http.ResponseWriter, r *http.Request) {
  16. fmt.Fprintf(w, "Привет!")
  17. }