• ndupont@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 day ago

    You’ll be surprised to learn that WinDEV can be programmed in a ton of diferent languages. I mean the instruction set and all. It feels dirty to read code written in french, and that’s my mother tongue. What a shit show. Only ‘logo’ for kids in primary school makes sense to have in their native language. EDIT : mostly french or English actually https://pcsoft.fr/wlangage.htm

    • foudinfo@jlai.lu
      link
      fedilink
      arrow-up
      2
      ·
      14 hours ago

      Came here exactly for this comment…

      Windev is probably one of the worst possible programming language out there, look at this !

      This is from their official documentation

      // Récupère le CA du mois en cours
      TotalCA est un monétaire = CalculCAMoisEnCours()
      
      // Si le CA dépasse l'objectif
      SI TotalCA >= 1 250 000 ALORS
        LIB_Objectif= "Objectif dépassé !"
        LIB_Objectif.Couleur= VertFoncé
      SINON
        // Si le CA n'atteint pas l'objectif minimum attendu
        SI TotalCA <= 200 000 ALORS
          LIB_Objectif= "Objectif non atteint"
          LIB_Objectif.Couleur= RougeClair
        FIN
      FIN