#!/usr/bin/env pluvo % 035-case.pvo - Regular Expressions Test Author: Sean B. Palmer, inamidst.com main = (argv) if {/test/ "test"} say "1: pass" if {/test/ "hello"} say "2: FAIL" if {/t[es]+t/ "test"} say "3: pass" if {/t[es]+t/ "tot"} say "4: FAIL" test = "boing" if {/$test/ "boing"} say "5: pass" script main