Add code block

This commit is contained in:
2026-02-28 10:56:00 +11:00
parent fbddd9a199
commit 82a127f34c
3 changed files with 76 additions and 0 deletions

View File

@@ -26,3 +26,8 @@ puts 3 < 5
puts 10 != 3
puts 3 >= 2
puts 3 >= 3
// Put stuff inside a code block, what could possibly go wrong
{
puts "Hi from the code block!"
}