// WidecallKL.java Copyright (c) 2006 Kari Laitinen // http://www.naturalprogramming.com // 2006-02-15 File created. // 2006-02-15 Last modification. class WidecallKL { static void print_wide_string( String given_string ) { System.out.print( "\n " ) ; for ( int character_index = 0 ; character_index < given_string.length() ; character_index ++ ) { System.out.print( " " + given_string.charAt( character_index ) ) ; } } public static void main( String[] not_in_use ) { String example_string = "Hello, world." ; print_wide_string( example_string ) ; } }