= >.
// The => operator means is x more or equal then y?
1 => 0 // True
1 => 1 // True
1 => 2 // False
Jolly Jay
// The => operator means is x more or equal then y?
1 => 0 // True
1 => 1 // True
1 => 2 // False