Jules Kahn wrote: > Hello, everyone. > I'm new to this mailing list, and to coding in general,so I would like to > ask you all to bear with me. > I would like to set a number of variables using only one line of code. > Something like > X+1-->X > Y-->A"X" You can use ':' (colon) to separate different expressions. Like: 5->A : 10+A->B : B->C : C/2->D /jonas