Skip to content

Commit

Permalink
Fish
Browse files Browse the repository at this point in the history
  • Loading branch information
ghluka committed Mar 29, 2024
1 parent 4f1d573 commit 2627348
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/F/Fish/fibonacci.fish
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
set a 0
set b 1
for i in (seq 10)
echo $a
set a (math $b + $a)
set b (math $b - $a)
end

0 comments on commit 2627348

Please sign in to comment.