Romain Edelmann

Results 19 comments of Romain Edelmann

The dependencies on parseback were for performance comparison purposes. Those benchmarks are not directly about Scallion and can thus be thrown out. The same might apply to other benchmarks.

Yes, it doesn't matter how you produce the tokens. The examples make use of Silex for handling lexing, but you could use anything you like.

I think there's two SBT projects, one for the library, one for the examples. The one for the library itself doesn't depend on anything, so you could remove the bintray...

Hey @samarion, I don't think it is. There might be issues with overloading. I will look at this when I have time!

Tu as mis sphinxcontrib-video dans les requirements.txt et tu l'as installé via pip ? On Tue, Apr 12, 2022, 08:28 Elliot Vaucher ***@***.***> wrote: > @prochat : j'ai essayé d'installer...

Au passage, je pense que ça serait plus sage de ne pas mettre les fichiers video sur le git, mais directement via FTP sur le serveur files.modulo-info.ch

Ok, merci !

Je vais regarder ça jeudi du coup. Au pire je réimplémente vite ça.

Comme l'énoncé est formulé je comprends le programme comme: ``` for x in xs: ... for x1 in xs: for x2 in xs: ... ``` C'est aussi l'interprétation de la...

Ha, je vois ! Il faut le comprendre ça comme ? ``` for x in xs: parcourir(xs) for x1 in xs: for x2 in xs: parcourir(xs) def parcourir(xs): for x...