% system > ConTeXt ver: 2021.07.16 22:03 LMTX fmt: 2021.7.21 int: english/english
\startMPdefinitions
presetparameters "parameters_Test"
[
]
def Test =
applyparameters "parameters_Test" "do_Test"
enddef;
def do_Test =
pushparameters "parameters_Test";
show hasparameter "color";
show getparameter "color";
enddef;
\stopMPdefinitions
\starttext
hello
\startalignment[center]
\startplacefigure
\startMPcode
string fuschia; fuschia = "fuschia";
show "string constant fuschia ...";
Test [ color = "fuschia" ];
show "string variable fuschia = " & fuschia & " ...";
Test [ color = fuschia ];
show "expression containing string variable fuschia = " & fuschia & " ...";
Test [ color = "" & fuschia ];
\stopMPcode
\stopplacefigure
\stopalignment
goodbye
\stoptext