35 lines
981 B
Java
Executable File
35 lines
981 B
Java
Executable File
package test;
|
|
|
|
|
|
|
|
public class TestSemantic
|
|
{
|
|
|
|
void print_Hello_World() {
|
|
System.out.println("Hello World");
|
|
}
|
|
|
|
void sem_test() {
|
|
System.out.println(" Parser:");
|
|
System.out.println("");
|
|
System.out.println(" Jochen Schlachter");
|
|
System.out.println(" Thomas Schaumann");
|
|
System.out.println(" Christian Riess");
|
|
System.out.println(" Matthias Eichholz");
|
|
System.out.println("");
|
|
|
|
System.out.println(" Sematicchecker:");
|
|
System.out.println("");
|
|
System.out.println(" Felix Reichenbach");
|
|
System.out.println(" Stephan Lachenmaier");
|
|
System.out.println(" Sabine Dawidowski");
|
|
System.out.println(" ");
|
|
|
|
System.out.println(" CodierSchweinchens:");
|
|
System.out.println("");
|
|
System.out.println(" Matthias Benesch");
|
|
System.out.println(" Michael Henninger");
|
|
System.out.println(" Volker Straub");
|
|
System.out.println(" Stefan Teutsch");
|
|
}
|
|
} |