blob: 5401e08757c20b22410e806d1950cb2a23caf2ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public class Application {
@MarkerTwo
@MarkerOne
public void greet(String name) {
System.out.println("Hello " + name + "!");
}
public static void main(String[] args) {
new Application().greet("world");
}
}
|