JavaCompilerCore/examples/OldExamples/test/Eins.java
2013-10-18 13:33:46 +02:00

27 lines
337 B
Java
Executable File

package test;
public class Eins
{
int a;
char b = 'a';
boolean c = false;
String s = "Hallo";
public static void Methode()
{
int g = 34;
char h = 'c';
String bla = "Haus";
boolean bo = true;
}
private int Methode2()
{
Zwei testklasse = new Zwei();
int d;
int f = d = 5;
return 14;
}
}