KineKlubEdition7

From Tmplab

Attention, veuillez-vous munir de votre interpréteur préféré  ;)


  1. include <stdio.h>

int main(int argc, char *argv[])

{

   char what[] =
       "KineKlub #7 - Code";
   char when[] =
       "Le 12/03/2010 à partir de 20h jusqu'à épuisement de tous les participants";
   char where[] =
       "6 rue des Entrepots 93400 Saint-Ouen, portail vert, Métro : Porte de Clignancourt";
   char who[] =
       "dermiste, endrazine, itzhack, iv, kiniou, Maurin, milo, {Nico}, urs";
   char agenda[] =
       "Introduction à la programmation, les différents langages de programmation (C, Shell, Perl, Assembler, Brainfuck, Whitespace…)\n"
       "Les regex ou expressions régulières\n"
       "Le processus de création ou le quotidien du codeur\n"
       "La machine de Turing\n"
       "Le Ken thomson Hack\n"
       "Le lambda calcul\n"
       "L'isomorphisme de Curry Howards\n"
       "Le live coding (Fluxius)\n";
   printf("Quoi  : %s\n", what);
   printf("Quand : %s\n", when);
   printf("Où    : %s\n", where);
   printf("Avec  : %s\n", who);
   printf("\n");
   printf("Programme :\n%s\n", agenda);
   printf("\n");
   printf("Venez (nombreux) avec coussins, vins, fromage & fruits...et tête reposée  \n\n");

}