#!/usr/bin/env pluvo % 026-case.lu - Trivial Ordering Test Author: Sean B. Palmer, inamidst.com hello = (name) { say "Hello $name!" } greet = (name) { say "Greetings $name!" } main = (argv) { greet "John" hello "Peter" } script main