-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblem.barrett
executable file
·92 lines (80 loc) · 1.94 KB
/
problem.barrett
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{ Sieve of Eratosthenes without assignment.
* Note: Assignment is used only in Cons function and to return values from functions
* since barrett returns values by assigning to the special variable 'Result'
}
function Cons(A, B);
var
ConsCell[0..1];
begin
ConsCell[0] := A;
ConsCell[1] := @B;
Result := ConsCell;
end;
function ConsStream(A, B);
begin
Result := Cons(A, @B);
end;
function StreamCar(Stream);
begin
Result := Stream[0];
end;
function StreamCdr(Stream);
begin
Result := Stream[1];
end;
function DisplayStream(S, N);
begin
if N > 0 then
begin
WriteLn(StreamCar(S));
DisplayStream(StreamCdr(S), N-1);
end;
end;
function StreamFilter(Pred, Stream);
begin
if Pred(StreamCar(Stream)) then
begin
Result := ConsStream(StreamCar(Stream),
lambda;
begin
Result := StreamFilter(@Pred, StreamCdr(Stream));
end;
);
end
else
begin
Result := StreamFilter(@Pred, StreamCdr(Stream));
end;
end;
function IntegersStartingFrom(N);
var
ConsCell[0..1];
begin
Result := ConsStream(N,
lambda;
begin
Result := IntegersStartingFrom(N+1);
end;
);
end;
function IsNotDivisible(X, Y);
begin
Result := (X % Y) <> 0;
end;
function Sieve(S);
begin
Result := ConsStream(StreamCar(S),
lambda;
begin
Result := Sieve(StreamFilter(
lambda(x);
begin
Result := IsNotDivisible(x, StreamCar(S));
end;
, StreamCdr(S)));
end;
);
end;
begin
DisplayStream(Sieve(IntegersStartingFrom(2)), 12);
end;