This repository has been archived on 2026-03-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
v2/test.sols
2026-02-27 14:54:16 +11:00

20 lines
266 B
Plaintext

// heheheha comment
x = 5
puts x + 3
puts 5 * 7
puts 3.0 / 2
puts 10 - 3
puts "dingle" + "dongle"
// Uh oh it's the order of operations
puts 5 + 3 * 7
puts 5 * 3 + 7
// Let's do some equalities
puts 5 == 5
puts 3 == 2
puts "dingus" == "dongus"
puts 3.14 == 3.14