Please disable your ad-blocker to access the content

Golang

GUI-Calculator-in-Golang-With-Fyne

GUI Calculator in Golang With Fyne

3

In this article we are going to create a GUI based calculator in Go programming language using Fyne package of Go. Fyne supports all OS and even mobile devices.

the go compiler

The Go Compiler

0

The Go compiler is executed with the help of the go tool, which does many more things than just generating executable files.

common go tool commands

Common Go Tool Commands

0

Go ships with several useful commands that simplify the development process. The commands themselves are commonly included in IDEs,making the tooling consistent

why concurrency is hard go

Why Concurrency is hard Golang

0

Concurrent code is notoriously difficult to get right. It usually takes a few iterations to get it working as expected, but Golang can handle concurrency.

golang-ways-to-check-map-key-exists

Golang check if map key exists

0

Go map are almost like json, as we access value of json via key we also do the same with map of Go, There are multiple ways to check if a key exists in a map.

loops-in-golang-explained

Loops in Golang

0

Every programming language has a way of looping and Go is no exception. Go offers the for loop, which allows you to retrieve over many kinds of data types.

numeric-data-type-explained-go

Numeric Data Types In Go

0

Golang have multiple numeric data types. Go has native support for integers and floating-point numbers, as well as complex numbers.