RosettaCodeData/Task/Ordered-words/Aime/ordered-words.aime

40 lines
464 B
Text
Raw Permalink Normal View History

2013-06-05 21:47:54 +00:00
integer
2018-06-22 20:57:24 +00:00
ordered(data s)
2013-06-05 21:47:54 +00:00
{
2018-06-22 20:57:24 +00:00
integer a, c, p;
2013-06-05 21:47:54 +00:00
a = 1;
2018-06-22 20:57:24 +00:00
p = -1;
for (, c in s) {
if (c < p) {
a = 0;
break;
} else {
p = c;
2013-06-05 21:47:54 +00:00
}
}
2018-06-22 20:57:24 +00:00
a;
2013-06-05 21:47:54 +00:00
}
integer
main(void)
{
file f;
text s;
2018-06-22 20:57:24 +00:00
index x;
2013-06-05 21:47:54 +00:00
2018-06-22 20:57:24 +00:00
f.affix("unixdict.txt");
2013-06-05 21:47:54 +00:00
2018-06-22 20:57:24 +00:00
while (f.line(s) != -1) {
if (ordered(s)) {
x.v_list(~s).append(s);
2013-06-05 21:47:54 +00:00
}
}
2018-06-22 20:57:24 +00:00
l_ucall(x.back, o_, 0, "\n");
2013-06-05 21:47:54 +00:00
return 0;
}