// ------------------------------------------------------------------- // text_read.groovy // // Sep/05/2016 // // ------------------------------------------------------------------- class text_read { // ------------------------------------------------------------------- static void main (args) { System.err.println ("*** 開始 ***") def file_in=args[0] def ff = new text_manipulate () def dict_aa = ff.text_read_proc (file_in) ff.dict_display_proc (dict_aa) System.err.println ("*** 終了 ***") } // ------------------------------------------------------------------- } // -------------------------------------------------------------------