View fib.dfy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fib(n: nat): nat { | |
if n == 0 || n == 1 then 1 else fib(n-1) + fib(n - 2) | |
} |
View gist:bf70d08e65a84632345a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Somehow, docker was hosed on my centos system. I couldn't run 'docker pull' due to the above error. | |
$ sudo service docker stop | |
$ sudo rm -rf /var/lib/docker | |
fixed the problem. |