經安全檢測,此網站為安全網站,請放心前往原始網址!

Code Prettifier

Bash #!/bin/bash # Fibonacci numbers # Writes an infinite series to stdout, one entry per line function fib() { local a=1 local b=1 while true ; do echo $a local tmp=$a a=$(( $a + $b )) b=$tmp done } # output the 10th element of the series and halt fib |

google-code-prettify.googlecod

網址安全性掃描由 google 提供