playground/latex/expl3-hello.tex

18 lines
291 B
TeX
Raw Normal View History

2023-05-23 16:34:54 +00:00
\documentclass{article}
\usepackage{xparse} % from expl3
%\RequirePackage{expl3}
\ExplSyntaxOn
\NewDocumentCommand{\DeclareListOfValues}{ m m }
{
\clist_gclear_new:c {g_list_of_values_#1_clist}
\clist_gset:cn {g_list_of_values_#1_clist} {#2}
}
\begin{document}
3
\end{document}