13 lines
150 B
Text
13 lines
150 B
Text
record r;
|
|
file f;
|
|
text s;
|
|
|
|
f.opendir(1.argv);
|
|
|
|
while (~f.case(s)) {
|
|
if (s != "." && s != "..") {
|
|
r[s] = 0;
|
|
}
|
|
}
|
|
|
|
r.vcall(o_, 0, "\n");
|