@array @funkyduck try #GoLang with #GinGonic and enjoy simplicity like python with the speed of rust.

https://gin-gonic.com/docs/quickstart/

Quickstart

In this quickstart, we’ll glean insights from code segments and learn how to: Requirements Go 1.16 or above Installation To install Gin package, you need to install Go and set your Go workspace first. Download and install it: $ go get -u github.com/gin-gonic/gin Or install: $ go install github.com/gin-gonic/gin@latest Import it in your code: import "github.com/gin-gonic/gin" (Optional) Import net/http. This is required for example if using constants such as http.StatusOK. import "net/http" Create your project folder and cd inside $ mkdir -p $GOPATH/src/github.

Gin Web Framework