11 lines
140 B
Plaintext
11 lines
140 B
Plaintext
prog {
|
|
const a = 5;
|
|
rat x = [6/a];
|
|
int y = (a+1);
|
|
x = (x + [3/2]);
|
|
while (y < 10) {
|
|
print ([a/y] * x);
|
|
y = (y + 1);
|
|
}
|
|
}
|