Variables with generation instructions

Is it possible to put a generation instruction in a variable for a later usage, e.g. STO#GRPS '(1,10,1)' or I need to use preprocessor directive #DEFINE?

#define NOD=(1 10 1)
#define XN=(1 1)

node $(NOD) x $(XN)

Than you. Yes, it can be done with #DEFINE but I would like to avoid preprocessing. Is it possible to
use STO?

This should work:

Sto#NOD 1, 10, 1
Sto#XN 1, 1

node (#NOD(0) #NOD(1) #NOD(2)) x (#XN(0) #XN(1))
1 Like