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
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 unmonétaire= CalculCAMoisEnCours()
// Si le CA dépasse l'objectif
SI TotalCA >= 1250000 ALORS
LIB_Objectif= "Objectif dépassé !"
LIB_Objectif.Couleur= VertFoncé
SINON
// Si le CA n'atteint pas l'objectif minimum attendu
SI TotalCA <= 200000 ALORS
LIB_Objectif= "Objectif non atteint"
LIB_Objectif.Couleur= RougeClair
FIN
FIN
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
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