Fibonacci sequence: Difference between revisions

Content added Content deleted
(→‎{{header|PL/0}}: Added a solution.)
(→‎min: update)
Line 8,636: Line 8,636:


=={{header|min}}==
=={{header|min}}==
{{works with|min|0.19.3}}
{{works with|min|0.37.0}}
<syntaxhighlight lang="min">(
<syntaxhighlight lang="min">(
(2 <)
(2 <)
((0 1 (dup rollup +)) dip pred times nip)
(pred (1 0 (over + swap)) dip times pop)
unless
unless
) :fib</syntaxhighlight>
) ^fib</syntaxhighlight>


=={{header|MiniScript}}==
=={{header|MiniScript}}==