proc main(args)
{
    match (args[1]) {
    case "(this is an error" :
        "Oops\n";
    default :
        "Still oops\n";
    }
    "This next should also throw an error\n";
    return i + 1;
}