Little fix after the last commit (mostly a git fail)
[eigenmath-fx.git] / list.cpp
blob2048c7486de02d3db77aee4cfc2dd2f72b8d9f9e
1 // Create a list from n things on the stack.
3 #include "stdafx.h"
4 #include "defs.h"
6 void
7 list(int n)
9 int i;
10 push(symbol(NIL));
11 for (i = 0; i < n; i++)
12 cons();