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
Pingback: Elm - Arithmetic Operators | Adglob Infosystem Pvt Ltd
Pingback: Elm - Operators | Adglob Infosystem Pvt Ltd