Kiran Chauhan

Cogito, ergo sum

Think Like Functional Programmer Pt. 1

You often heard from the functional programmers that if you are coming from object-oriented or procedural programming background, then you need to shift the way you write the function programs. Of course, as you know one programming language, you can write programs in other programming language by using what you know. But, often times, programs written in this way are not efficient or effective.

On Elixir Pt. 4

We are continuing our journey with composite data types, and in this article, we briefly touch on the next composite data type: Tuples.

On Elixir Pt. 3

Now, you know a few primitive data types such as Integer, Floating-point numbers, Boolean, and String. Let’s move on and talk about a few composite data types, starting with Lists.

On Elixir Pt. 2

Elixir is a dynamic programming language. Assign the value to a variable, and you’re good to go.

On Elixir Pt. 1

Elixir is a dynamic, functional programming language designed for building scalable and maintainable applications. It runs on the Erlang VM (BEAM), known for its low-latency, distributed, and fault-tolerant capabilities.