If loops are about doing something over and over, functions are about doing something on demand — whenever you call for it. They're one of the most important building blocks in Verse, so let's break them down in plain English, with real code you can actually picture running. What's a Function, Really? Think of a function like a vending machine. You put something in (optional), you press a button (you "call" it), and it gives you something back out (optional). You don't need to know exactly how the inside of the machine works every time — you just need to know what to put in and what you'll get out. In programming terms: a function is a named, reusable chunk of code that you can run whenever you need it, instead of retyping the same logic over and over. The Basic Shape of a Verse Function Here's the simplest possible function in Verse: SayHello() : void = Print("Hello!") Let's break that down piece by piece: SayHello — this...