
Getting Started with V Programming
By :

Primitive data types are data types in their purest form and cannot be represented as a reference or derivation from other forms of data. V has a variety of primitive data types, such as Boolean, rune, and string, and numeric data types, such as integers, unsigned integers, and float types.
Before we delve into understanding data types, we will see how to determine the type of any variable using the built-in typeof()
function as follows:
typeof(variable).name
With this very brief introduction to primitive data types, let's begin our journey to study these types in depth. We will begin with learning about the Boolean data type along with various operators that yield a Boolean result, with code examples.