Types

Komodo has a very simple type system. You cannot create custom types in Komodo. Let's describe all of them and see a few examples.

Numerical types

Komodo has three kinds of numbers, and each of them has their own type: Integers, Floats, and Fractions.

Let's see how to generate, manipulate, and do operations with numbers.

Integers

The Integer type represents a signed, arbitrary size whole number. You can write integers in the following ways:

  • In binary form, starting the number with 0b or 0B: 0b10, 0b001, 0B1011,...

    Writing 0b only, with nothing after it, is illegal.

  • In octal form, starting the number with 0o or 0O: 0o15, 0O80, 0o01,...

    Writing 0o only is illegal, just like with binary numbers.

  • In decimal form, the most common way of describing them: 15, 1, 0,...

    The decimal format does not allow unnecessary zeros: 000 is illegal, as well as 0001, for example.

    Basically, all leading zeros are illegal when you are writing decimal numbers.

  • In hexadecimal form, starting the numbers with 0x or 0X: 0xff, 0x1e, 0x01,...

    As you may have guessed, writing 0x alone is illegal.

Komodo implements all the essential arithmetic operations between integers. It also implements bitwise operations.

Even when you can write integers in these formats, Komodo will always print them in decimal by default. For example, if you type 0b1011 in the REPL, like this:

>>> 0b1011

You get the following result:

11

That makes sense: 1011 in binary is just 11 in decimal.

Floats

The Float type represents a double precision floating-point binary number, equivalent at first to the one specified in the IEEE 754 standard. The difference is that floats have arbitrary precision, so they will increase their digits when necessary.

You can write floats as two decimal integers with a dot in between: 0.1, 0.5, 115.2555,...

Komodo implements all the essential arithmetic operations between floats. When you operate an integer and a float, the result will be a float.

Fractions

The Fraction type represents a rational number, a ratio between two integers, where one of them is non-zero.

You can write fractions as two integers separated by the // operator: 0 // 1, 1 // 2, 7 // 3,...

Actually, // is an operator receiving integers as inputs, you can create fractions with non-constant values:

>>> let x := 2
2
>>> x // 3
2 // 3
>>> (5*x) // 7
10 // 7

Characters

The Char type represents any Unicode symbol. You can write chars with single quotes, like this: 'a', '\'', '\\',...

You can "multiply" chars and get a string:

>>> 3*'z'
"zzz"

You can concatenate chars and get a string:

>>> 'a' + 'z'
"az"

Strings

The String type represents a sequence of Unicode symbols. You can write strings with double quotes: "foo", "\"bar\"", "hello world",...

You can make operations between characters and strings:

  • You can concatenate strings:

    >>> "ab" + "cd"
    "abcd"
    
  • You can concatenate chars and strings:

    >>> "ab" + 'c'
    "abc"
    
  • You can "multiply" strings too:

    >>> "F" + "U"*10
    "FUUUUUUUUUU"
    

Tuples

The Tuple type represents an ordered collection of Komodo values. You can write tuples with round parenthesis: (), (1, "foo"),...

The purpose of tuples is to put values together. You can use the empty tuple as a "null" value, which you use to say that is nothing to return. In fact, Komodo builtins use the empty tuple in that way, and some constructions, like for loops, return ().

Lists

The List type represents a sequence of Komodo values. You can add values to lists, which is something you can't do with tuples. You can write lists with square brackets: [], [1, 2], ["foo", 'z', 5.5, []],...

  • You can concatenate lists:

    >>> [1, 2] + [3]
    [1,2,3]
    
  • You can prepend elements to a list:

    >>> [1|[2, 3]]
    [1,2,3]
    

    This is known as the cons notation. The name comes from a basic function in Lisp.

  • You can check if a value is inside the list:

    >>> 1 in [2]
    false
    >>> 1 in [1, 5]
    true
    
  • You can write lists by comprehension:

    >>> [x*2 for x in 0..3]
    [0,2,4]
    

Lists are the most basic container in Komodo. They will be very useful.

Sets

The Set type represents an unordered collection of Komodo values. You can write sets with braces: {}, {1, 2}, {1, 1, "2"},...

  • You can get the union between two sets:

    >>> {1, 2} + {2, 3}
    {1, 2, 3}
    
  • You can get the difference between two sets:

    >>> {1, 2} - {2, 3}
    {1}
    
  • You can check if a set is a subset of another:

    >>> {} < {1, 2}
    true
    >>> {1, 2} < {1, 2}
    false
    >>> {1, 2} <= {1, 2}
    true
    >>> {1} <= {1, 2}
    true
    
  • You can add elements to a set:

    >>> {5|{"a", 1}}
    {1, 5, "a"}
    
  • You can check if a value is an element of a set:

    >>> 0 in {}
    false
    >>> {1} in {0, {1}}
    true
    
  • You can write sets by comprehension:

    >>> {k % 2 for k in 0..10}
    {0, 1}
    

Sets are very useful when you do not need an ordered collection, but you do need to join collections frequently, avoid repetitions, and check if some element is inside the collection.

Dictionaries

The Dict type represents a collection of key-value pairs, when keys and values are Komodo values. You can write them as pairs between braces:

{5 => 7, "foo" => "bar", [1, 'x'] => {55, 9}}

Let's say that the variable data has a value of the Dict type. You can get a value from data with its key by writing data[key]:

>>> let data = {"bar" => 1}
{"bar" => 1}
>>> data["bar"]
1

When a key in a Dict is of the String type, You can use another notation:

>>> let data = {"bar" => 1}
{"bar" => 1}
>>> data.bar
1