This file contains hidden or 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
| * systemd-modules-load.service - Load Kernel Modules | |
| Loaded: loaded (/usr/lib/systemd/system/systemd-modules-load.service; static) | |
| Active: failed (Result: exit-code) since Sun 2014-05-11 14:36:49 CDT; 8min ago | |
| Docs: man:systemd-modules-load.service(8) | |
| man:modules-load.d(5) | |
| Process: 122 ExecStart=/usr/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE) | |
| Main PID: 122 (code=exited, status=1/FAILURE) | |
| May 11 14:36:49 archmac systemd-modules-load[122]: Module 'b43' is blacklisted | |
| May 11 14:36:49 archmac systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=1/FAILURE |
This file contains hidden or 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
| (define n 0) | |
| (do () | |
| ((= n 101)) | |
| (cond | |
| ((eq? (modulo n 15) 0) (display "FizzBuzz\n")) | |
| ((eq? (modulo n 3) 0) (display "Fizz\n")) | |
| ((eq? (modulo n 5) 0) (display "Buzz\n")) | |
| (else (map display (list n "\n"))) | |
| ) | |
| (set! n (+ n 1)) |
NewerOlder