repo.or.cz
/
minish.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make minish-eval a separate program
[minish.git]
/
src
/
qq.c
blob
d149416b0d925d299569730e9936c31e4de83ec7
1
#include <stdio.h>
2
3
int
main
(
int
argc
,
char
**
argv
) {
4
if
(
argc
>
1
) {
5
fputs
(
argv
[
1
],
stdout
);
6
for
(
int
i
=
2
;
i
<
argc
; ++
i
) {
7
putchar
(
'\0'
);
8
fputs
(
argv
[
i
],
stdout
);
9
}
10
}
11
}