forked from JavaTX/JavaCompilerCore
10 lines
99 B
Plaintext
10 lines
99 B
Plaintext
|
import java.util.Stack;
|
||
|
|
||
|
class Arne {
|
||
|
|
||
|
drinkCoffee(x) {
|
||
|
x.push("Hallo");
|
||
|
String y = x.pop();
|
||
|
}
|
||
|
|
||
|
}
|