int sum(Node n) { if (n.v == 0) return 0; return n.v + sum(n.neste); }
NullPointerException
StackOverflowError