Have a go binary implement an http server:
package main
import ( "net/http" )
func main() { http.ListenAndServe(":8080", nil) }
It will start with ~850 kb or so of memory. Send it some
Sign in to post comments.
Comments (0)
Sign in to post comments.