#!/usr/bin/env rune # Copyright 2003-2004 Kevin Reid. # This source code and related files are distributed under the MIT License, as described in the document named "License.txt" which should be provided with this source distribution. pragma.enable("explicit-result-guard") pragma.disable("easy-return") if (interp.getArgs() =~ [filename]) { println( .recognize( [filename].getBytes(), .makeBuilder() ) ) } else { stderr.println("Usage: $0 ") }