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

34 lines
487 B
Plaintext
Raw Normal View History

2026-02-20 09:35:50 +11:00
// heheheha comment
2026-02-26 08:50:43 +11:00
x = 5
2026-02-26 11:46:29 +11:00
puts x + 3
puts 5 * 7
puts 3.0 / 2
puts 10 - 3
2026-02-27 14:54:16 +11:00
puts "dingle" + "dongle"
2026-02-16 18:34:03 +11:00
// Uh oh it's the order of operations
puts 5 + 3 * 7
puts 5 * 3 + 7
2026-02-27 14:54:16 +11:00
// Let's do some equalities
puts 5 == 5
puts 3 == 2
puts "dingus" == "dongus"
puts 3.14 == 3.14
2026-02-28 10:25:26 +11:00
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
2026-02-28 10:56:00 +11:00
// Put stuff inside a code block, what could possibly go wrong
{
puts "Hi from the code block!"
}