repo.or.cz
/
eigenmath-fx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Little fix after the last commit (mostly a git fail)
[eigenmath-fx.git]
/
list.cpp
blob
2048c7486de02d3db77aee4cfc2dd2f72b8d9f9e
1
// Create a list from n things on the stack.
2
3
#include
"stdafx.h"
4
#include
"defs.h"
5
6
void
7
list
(
int
n
)
8
{
9
int
i
;
10
push
(
symbol
(
NIL
));
11
for
(
i
=
0
;
i
<
n
;
i
++)
12
cons
();
13
}