
- ELM Tutorial
- ELM - Home
- ELM - Introduction
- ELM - Environment Setup
- ELM - Basic Syntax
- ELM - Data Types
- ELM - Variables
- ELM - Operators
- ELM - Decision Making
- ELM - Loop
- ELM - Functions
- ELM - String
- ELM - List
- ELM - Tuples
- ELM - Records
- ELM - Error Handling
- ELM - Architecture
- ELM - Package Manager
- ELM - Messages
- ELM - Commands
- ELM - Subscriptions
- ELM Useful Resources
- ELM - Quick Guide
- ELM - Useful Resources
- ELM - Discussion
Elm - Relational Operators
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
Advertisements