Pregunta de entrevista de National Instruments

Draw recursion tree for Fun(n){ if(n < 0) return; Fun(--n); print n; Fun(--n); }