This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/programming/code/neverendingWhile.m
2015-11-06 12:10:48 +01:00

6 lines
86 B
Matlab

i = 1;
while true % this is always true
disp(x);
x = x * i;
i = i + 1;
end