Elm – Relational Operators

elm relational operators

In this guide, we will discuss Relational Operators in ELM Programming Language.

Illustration

Open the elm REPL and execute the following operations โˆ’

> a = 10
10 : number
> b = 20
20 : number
> a>b
False : Bool
> a<b
True : Bool
> a>=b
False : Bool
> a<=b
True : Bool
> a==b
False : Bool
> a/=b
True : Bool
False : Bool
> a/=b
True : Bool

Next Topic : Click Here

This Post Has 2 Comments

Leave a Reply