No Description

Ilshat Galimov 7eac26d174 Update README.md 1 year ago
Ethereum_CLI 81a15ef6e9 Add files via upload 1 year ago
WeatherApi 81a15ef6e9 Add files via upload 1 year ago
piscine_go 81a15ef6e9 Add files via upload 1 year ago
projects 81a15ef6e9 Add files via upload 1 year ago
training 81a15ef6e9 Add files via upload 1 year ago
README.md 7eac26d174 Update README.md 1 year ago

README.md

Проекты на Golang

Путеводитель по проектам.

import ( "fmt" "log" "net/http" )

func main() { http.HandleFunc("/", sayhello) // Устанавливаем роутер err := http.ListenAndServe(":8080", nil) // Устанавливаем порт веб-сервера if err != nil { log.Fatal("ListenAndServe: ", err) } }

func sayhello(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Привет!") } ```


Golang