On 6/23/2021 10:00 PM, Jeong Dal wrote:

Hi,

Is there a way to deliver the value of a variable in MetaFun to ConTeXt.
For example, I want to do the following:

\starttext
\startMPcode
numeric maxCount;
% … some code
maxCount := 10;
\stopMPcode

dorecurse{maxCount}
{It is \recurselevel.\par}

\stoptext

Thank you for reading.
\newcount\MyCount

\starttext

\startMPcode
    numeric maxCount;
    maxCount := 10;
    setglobalmacro("MyMacro",decimal maxCount);
    setglobalcount("MyCount",maxCount);
\stopMPcode


\dorecurse{\MyMacro}{It is \recurselevel. }\par
\dorecurse{\MyCount}{It is \recurselevel. }\par

\stoptext


-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
       tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to