10 lines
99 B
Plaintext
Raw Normal View History

2013-10-18 13:33:46 +02:00
import java.util.Stack;
class Arne {
drinkCoffee(x) {
x.push("Hallo");
String y = x.pop();
}
}