Fibonacci sequence: Difference between revisions

m (→‎{{header|Wren}}: Changed to Wren S/H)
Line 14,899:
=={{header|YAMLScript}}==
<syntaxhighlight lang="yaml">
!yamlscript/v0
 
loop [a 0, b 1, i 1 ]:
say: a
if (i < 10) ?:
^^^recur: b, (a + b), (i + 1)
</syntaxhighlight>
 
55

edits