Elm - Operadores relacionales

Ilustración

Abra el elm REPL y ejecute las siguientes operaciones:

> 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