• [^] # XS : programmez en XML

    Posté par . En réponse au journal Commencer à programmer ?. Évalué à 3.

    Pas pour débuter en programmation mais qui vaut le coup d'oeil : http://www.markcarter.me.uk/computing/xs.html . C'est un langage de programmation en XML. Voici un exemple tiré de la page précédente :

    <for var="n" from="100" to="0" step="-1">
    <print> n, " bottles of beer on the wall"</print>
    <print> n, " bottles of beer"</print>
    <print> "Take one down, and pass it around..."</print>
    <print> n-1, "bottles of beer on the wall\n"</print>
    </for>

    Ca doit être bien sympa couplé avec XSLT.