Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to implement factorial in the xml language of xcerion.


     <step id="fac">
       <alias name="p" value="={$n}*{$p}" />
       <alias name="n" value="={$n}-1" />
       <operation name="decision">
         <when test="'{$n}'>'0'" step="fac" />
       </operation>
     </step>

     <alias name="p" value="1" />
     <alias name="n" value="4" />
     <operation name="call" value="fac" />

My code works, but I think it's a bit wordy.

How does this language compare with other xml languages?

Especially handling of variables, selection, loops and subroutine calling.

share|improve this question
4  
Using XML as the syntax base for a programming language is among the worst abuses I can imagine subjecting a maintenance developer to. – John Feminella Jan 24 '10 at 17:14
1  
Many like the declarative route, but invariably face the need for custom logic. – Hamish Grubijan Jan 24 '10 at 17:17
2  
Actually coding in a language that's been shoe-horned into valid XML... bonkers. Saying you feel it's too wordy... priceless! – John O'Rourke Jan 24 '10 at 17:51
1  
I suggest you ditch this language. – Kugel Jan 24 '10 at 17:55
1  
huh? In Xml, wow! Didn't think you could do that - in Xml, wordy, sounds more like needy - a sign of desperation... – t0mm13b Jan 24 '10 at 17:58
show 6 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.