Showing posts in Go
post image

Installation of Go on Linux (golang)

2023-06-05 Go

The programming language Go is a compiled, statically typed language that uses a concurrency mechanism capable of making the most of multi-core and network architectures, also allowing the construction of flexible and modular programs. Go was created in 20...

by Darío Rivera


post image

Program Structure in GO

2023-06-05 Go

In a previous post we saw the installation of Go in Linux, today let's see what elements we need to make any program in Go. Initial structure All Go programs start with the main function in the main package. Additionally, it is not necessary to end stateme...

by Darío Rivera


post image

Functions in Go

2023-06-05 Go

In a previous post we have seen in a general way the structure of a program in Go, today we will see a very important concept in Go which are functions. For this, let's observe the following program: Function Definition For the definition of functions in G...

by Darío Rivera


post image

Types of data in Go

2023-06-05 Go

In a previous post we have seen Functions in Go. The next step is to see what types of data exist in this language in order to create all kinds of programs, functions and operations on these types. The following table presents all the basic data types, the...

by Darío Rivera


post image

Tipos de datos en Go

2019-09-19 Go Go 1

En un post anterior hemos visto las Funciones en Go. El siguiente paso consiste en ver qué tipos de datos existen en en este lenguaje para poder crear todo tipo de programas, funciones y operaciones sobre estos tipos. A continuación se presenta una ...

by Darío Rivera


post image

Funciones en Go

2019-09-18 Go

En un post anterior hemos visto a grandes rasgos la estructura de un programa en Go, el día de hoy veremos un concepto muy importante en Go el cuál son las funciones. Para esto, observemos el siguiente programa: Definición de funciones Para la definció...

by Darío Rivera


post image

Variables y estructura de un programa en GO

2019-09-17 Go

En un post anterior hemos visto la instalación de Go en Linux, el día de hoy veamos qué elementos necesitamos para hacer cualquier programa en Go. Estructura de inicio Todos los programas en Go inician por la función main en el paquete main. Además no...

by Darío Rivera


post image

Instalación de Go en Linux (golang)

2019-09-05 Go

El lenguaje de programación Go es un lenguaje compilado, de tipado estático, que utiliza un mecanismo de concurrencia capaz de aprovechar al máximo arquitecturas multinúcleo y en red, permitiendo también construir programas flexibles y modulares. Go f...

by Darío Rivera