7 lines
82 B
Text
7 lines
82 B
Text
value = 5;
|
|
NestWhile[
|
|
# + 1 &
|
|
,
|
|
value
|
|
, (Print[#]; Mod[#, 6] != 0) &
|
|
];
|