Go

Entendendo os tipos de dados em Go — step-by-step Programming tutorial on Progressive Robot

Entendendo os tipos de dados em Go

Os tipos de dados especificam os tipos de valores que variáveis específicas armazenarão quando estiver escrevendo um programa. O tipo de dados também determina quais operações podem ser realizadas nos dados. Neste artigo, vamos ver os tipos de dados importantes nativos para…

Read more
Использование ldflags для установки информации о версиях в приложениях Go — step-by-step Programming tutorial on Progressive Robot

Использование ldflags для установки информации о версиях в приложениях Go

При развертывании приложений в производственной среде сборка двоичных файлов с информацией о версии и другими метаданными помогает улучшить процессы мониторинга, регистрации данных и отладки за счет добавления идентификационной информации для отслеживания версий сборок. Информация…

Read more
Como Instalar o Go no Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

Como Instalar o Go no Ubuntu 18.04

Go é uma linguagem de programação moderna desenvolvida no Google. Ela é cada vez mais popular para muitas aplicações e em muitas empresas, e oferece um conjunto robusto de bibliotecas. Este tutorial irá ajudá-lo a baixar e instalar a versão mais recente do…

Read more
Определение структур в Go — step-by-step Programming tutorial on Progressive Robot

Определение структур в Go

Создание абстракций вокруг конкретных деталей — это самый лучший инструмент, который язык программирования может предоставить разработчику. Структуры позволяют разработчикам Go описывать мир, в котором работает программа Go. Вместо того, чтобы беспокоиться об использовании строк,…

Read more
How To Build and Install Go Programs — step-by-step Programming tutorial on Progressive Robot

How To Build and Install Go Programs

In Go, distributing or deploying your application requires you to build your code into a shareable binary executable. To do this, you can use the Go toolchain to build and install your program. In this tutorial, you will use the Go toolchain to run, build, and install a sample Hello, World! program, allowing you to use, distribute, and deploy future applications effectively.

Read more
How To Convert Data Types in Go — step-by-step Programming tutorial on Progressive Robot

How To Convert Data Types in Go

In Go, data types are used to classify one particular type of data, determining the values that you can assign to the type and the operations you can perform on it. When programming, there are times you will need to convert values between types in order to manipulate values in a different way. This tutorial will guide you through converting numbers and strings, as well as provide examples to help familiarize yourself with different use cases.

Read more
How To Install Go 1.6 on Ubuntu 14.04 — step-by-step Linux tutorial on Progressive Robot

How To Install Go 1.6 on Ubuntu 14.04

Go is a modern programming language developed by Google that uses high-level syntax similar to scripting languages. It is popular for many applications and at many companies, and has a robust set of tools and over 90,000 repos. This tutorial will walk you through downloading and installing Go 1.6, as well as building a simple Hello World application.

Read more
CHAT