Pergunta de entrevista da empresa National Instruments

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