hmm, I am a bit surprised, I would have guessed the following parsing rule:
    
    
    echo b, c d, e f g, h
      echo(b, c(d, e(f(g, h)))) # <--- I expected this
      echo(b, c(d), e(f(g)), h) # but hey it's this
    

Reply via email to