JSFiddle - React, Tailwind, and code Playground

by L_Robin

HTML

<script src="http://www.algodok.com/AlgoDok.js"></script>
<p>On peut
    <js>saluer("les amis" + ", Jean")</js> ou bien seulement
    <js class="fr">saluer("Jeanne")</js>
</p>

CSS

body {
    font-family : Verdana;
    font-size : 24px
}

JavaScript

renommer = function ()
{
    remplacer ("fiddle.jshell") .par ("Un petit exemple")
        .dans ("le nom du document");
};


saluer = function (m)
{
    alerter("Un grand bonjour à vous, " + m + " !");
};


MAI = "la mémoire à instructions" ;

exécution("différée",
          "renommer();déplacer(MAI).à(60,300)","1s");