Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 29, 2019 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/c085bcbae00898a21ee6f811b85567ae to your computer and use it in GitHub Desktop.
Save parzibyte/c085bcbae00898a21ee6f811b85567ae to your computer and use it in GitHub Desktop.
/*
Ejemplo 1: hola mundo en servidor HTTP con Go
@author parzibyte
*/
package main
import (
"fmt"// Imprimir en consola
"io"// Ayuda a escribir en la respuesta
"log"//Loguear si algo sale mal
"net/http"// El paquete HTTP
)
func main() {
http.HandleFunc("/hola", func(w http.ResponseWriter, peticion *http.Request) {
io.WriteString(w, "Solicitaste hola")
})
direccion := ":8080" // Como cadena, no como entero; porque representa una dirección
fmt.Println("Servidor listo escuchando en " + direccion)
log.Fatal(http.ListenAndServe(direccion, nil))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment