forked from JavaTX/JavaCompilerCore
9 lines
190 B
Java
Executable File
9 lines
190 B
Java
Executable File
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());
|
|
}
|
|
} |