forked from JavaTX/JavaCompilerCore
9 lines
190 B
Plaintext
9 lines
190 B
Plaintext
|
public class ErgebnisMain
|
||
|
{
|
||
|
public static void main(String[] args)
|
||
|
{
|
||
|
Ergebnis e = new Ergebnis();
|
||
|
e.berechne(2, 3);
|
||
|
System.out.println("Addition: 2+3= " + e.ergebnis());
|
||
|
}
|
||
|
}
|