Clojure – Loops
In this guide, we will discuss Clojure Loops. So far we have seen statements which are executed one after the other in a sequential manner. Additionally, statements are provided in…
In this guide, we will discuss Clojure Loops. So far we have seen statements which are executed one after the other in a sequential manner. Additionally, statements are provided in…
In this guide, we will discuss Clojure Bitwise Operators. Groovy provides four bitwise operators. Following are the bitwise operators available in Groovy. Sr.No.Operator & Description1bit-andThis is the bitwise “and” operator2bit-orThis…
In this guide, we will discuss Clojure Logical Operators. Logical operators are used to evaluate Boolean expressions. Following are the logical operators available in Groovy. OperatorDescriptionExampleandThis is the logical “and”…
In this guide, we will discuss Clojure Relational Operators. Relational operators allow comparison of objects. Following are the relational operators available in Clojure. OperatorDescriptionExample=Tests the equality between two objects(= 2…
In this guide, we will discuss Clojure Arithmetic Operators. Clojure language supports the normal Arithmetic operators as any language. Following are the Arithmetic operators available in Clojure. OperatorDescriptionExample+Addition of two…
In this guide, we will discuss Clojure Operators. An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. Clojure has the following types of operators −…
In Clojure, variables are defined by the ‘def’ keyword. It’s a bit different wherein the concept of variables has more to do with binding. In Clojure, a value is bound to a variable. One…
In this guide, we will discuss Clojure Data Types. Clojure offers a wide variety of built-in data types. Built-in Data Types Following is a list of data types which are defined…
In this guide, we will discuss Clojure REPL. REPL (read-eval-print loop) is a tool for experimenting with Clojure code. It allows you to interact with a running program and quickly…
In this guide, we will discuss Clojure Basic Syntax. In order to understand the basic syntax of Clojure, let’s first look at a simple Hello World program. Hello World as…