Add all the other inequalities

This commit is contained in:
2026-02-28 10:25:26 +11:00
parent 8756dd08c8
commit fbddd9a199
3 changed files with 526 additions and 1 deletions

View File

@@ -17,3 +17,12 @@ puts 5 == 5
puts 3 == 2
puts "dingus" == "dongus"
puts 3.14 == 3.14
puts 3 + 5 == 3 + 5
// And now some of the other thingys
puts 3 > 5
puts 3 < 5
puts 10 != 3
puts 3 >= 2
puts 3 >= 3