The syntaxSupposons que dans votre formulaire, vous ayez défini un champ 'ht' pour indiquer le prix hors taxe, ainsi qu'un champ 'ttc' pour indiquer le prix TVA incluse. ttc := ht * 1.196 Warning : Contrary to mathematical conventions, Storga uses a parenthesing system on the outside, and the space instead of the comma as a separator, so we will write: (sin x) + (min x y) and no: sin(x) + min(x,y) With the notation chosen, we don't have to systematically parenthesize, so we can write: var Float y := sin x instead of: var Float y := (sin x) Finally a comment is introduced by the '#' sign and ends at the end of the line: # ceci est une ligne de commentaire |