Development

Написание условных выражений в Go — step-by-step Programming tutorial on Progressive Robot

Написание условных выражений в Go

Условные выражения являются частью каждого языка программирования. Условные выражения позволяют создавать код, который будет или не будет выполняться в зависимости от условий в программе на момент запуска. Когда мы полностью исполняем каждое выражение программы, мы не просим,…

Read more
Использование оператора switch в Go — step-by-step Programming tutorial on Progressive Robot

Использование оператора switch в Go

Условные выражения дают программистам возможность предписывать программам производить определенные действия, если условие выполняется, и другое действие, если условие не выполняется. Нам…

Read more
Importing Packages in Go — step-by-step Programming tutorial on Progressive Robot

Importing Packages in Go

The ability to borrow and share code across different projects is foundational to any widely-used programming language—and the entire open-source community. In Go, the basic unit of reusable code is called a package. In this tutorial, you will write you short programs—one that imports a standard library package, and one that imports a third-party package. You will also write an extended program comparing two similar packages, and also use the goimports tool to see how to format your import.

Read more
Understanding Boolean Logic in Go — step-by-step Programming tutorial on Progressive Robot

Understanding Boolean Logic in Go

The Boolean data type can be one of two values, either True or False. We use Booleans in programming to make comparisons and to control the flow of the program. In this tutorial, we’ll go over the basics you’ll need to understand how Booleans work in Go, including Boolean comparison and logical operators, and truth tables.

Read more
Understanding Data Types in PHP — step-by-step Programming tutorial on Progressive Robot

Understanding Data Types in PHP

In PHP, as in all programming languages, data types are used to classify one particular type of data. This is important because the specific data type you use will determine what values you can assign to it and what you can do to it (including what operations you can perform on it). In this tutorial, we will go over the important data types native to PHP. This is not an exhaustive investigation of data types, but will help you become familiar with what options you have available to you in PHP.

Read more
Understanding init in Go — step-by-step Programming tutorial on Progressive Robot

Understanding init in Go

In Go, the predefined init() function sets off a piece of code to run before any other part of your package. This code will execute as soon as the package is imported, and can be used when you need your application to initialize in a specific state. In this tutorial, you’ll learn how init() is used for the setup and initialization of specific package variables, one time computations, and the registration of a package for use with another package.

Read more
Understanding Order of Operations in Programming — step-by-step DevOps tutorial on Progressive Robot

Understanding Order of Operations in Programming

It’s easy to take the order of operations for granted, because higher-level languages handle that for you. In this tutorial, we’ll look at how that works at a lower level, and derive an algorithm for processing mathematical expressions in postfix notation.

Read more
CHAT