local Parser proc {RunAll ListOfExpressions} if ListOfExpressions == nil then skip else {Browse {Run ListOfExpressions.1}} {RunAll ListOfExpressions.2} end end fun {Run Exp} %replace this place holder with your reducer Exp end in [Parser] = {Module.link ['parser.ozf']} {RunAll {Parser.getExpsFromFile 'input.lambda'}} end