Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theredpea/02c9c2fbd97d59041ccd2548fa84a1cc to your computer and use it in GitHub Desktop.
Save theredpea/02c9c2fbd97d59041ccd2548fa84a1cc to your computer and use it in GitHub Desktop.
SET l1 = SUM(1);
SET l2 = COUNT($(l1));
SET l3 = AVG($(l2));
TRACE $(l3); // traces "AVG(COUNT(SUM(1))", ok...
LET ll1 = 'SUM(1)';
LET ll2 = 'COUNT($(ll1))';
LET ll3 = 'AVG($(ll2))';
TRACE $(ll3); // ALSO traces "AVG(COUNT(SUM(1))", ok...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment