Go 1.24: Testes de Benchmark

Uma das minhas funcionalidades favoritas em Go é a possibilidade de se escrever testes de benchmark. Agora na versão 1.24, essa funcionalidade ganhou uma cara nova, se tornando ainda mais fácil de ...
0 Read More

Go 1.24: Benchmark Tests

One of my favorite features in Go is the possibility of writing benchmark tests. At Go 1.24, this feature has a new look, making it easier to use. To demonstrate these changes, let's suppose a functio...
0 Read More

Serial Confinement in go

Hi, my name is Walid, a backend developer who’s currently learning Go and sharing my journey by writing about it along the way. Resources : The Go Programming Language book by Alan A. A. Donovan &am...
0 Read More

Command line calculator in GO

This is the code for the Calculator: ⛶package main import ( "fmt" "math" ) func main() { var num1, num2 float64 var operator string fmt.Println("Welcome to the calculator") ...
0 Read More