Returning Values (rev) In dryLang, return is shortened to rev. drylangfn isEven(n) { if (n % 2 = 0) { rev t } rev f } When an arrow function has no block braces {} (just an expression), the rev is implicit. drylang// Implicit return multiply = (a, b) -> a * bPreviousArrow FunctionsNextScope & Closures