# ==Equals
x <- 2==3
x

# != Not equals to
y <- 2!=3
y

# < Less than
z <- 5<7
z

# > Greater than 
a <- 5>7
a 

# <= Less than or Equal to
b <- 2<=3
b 

# >= Greater than or Equal to
c <- 4>=1
c

# & And
d <- 2<3 & 4<6
d 

e <- 2<3 & 4>6
e 

# | Or 
f <- 2<3 | 4<6
f

# ! Not
g =25

!g >25

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: