mob
verb
Test()
var add = (x, y) -> return x + y
src << add(5, 5)
It's not the best example, but hopefully I got my point across so that it can at least be considered. Another example, which is actually the above snippet just extended, could look like this:
mob
verb
Test()
var add = proc(x, y) \
return x + y
src << add(4, 5)
That one might be a bit tedious to implement, considering DM's code layout, and might look a bit ugly as well if you're working in a large project, but I'd really like to see something like this added.