Aufgabe Typecheck: zuviele Zeilenumbrüche
das sieht nicht gut aus, weil zu viel vertikaler Platz verbraucht wird
Gesucht ist ein Ausdruck vom Typ Foo
in der Signatur
String i;
static char a
( String x );
static char b
( boolean x, String y, String z );
static boolean c
( Foo x, String y );
static boolean d
( boolean x, Foo y, Foo z );
...
viel besser wäre ohne Umbrüche
String i;
static char a ( String x );
static char b ( boolean x, String y, String z );
...
und wenn doch, dann muß die Folgezeile eingerückt werden
static char b
( boolean x, String y, String z );