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
| local/lib32-nvidia-340xx-libgl 340.76-1 | |
| NVIDIA drivers libraries symlinks (32-bit) | |
| local/lib32-nvidia-340xx-utils 340.76-1 | |
| NVIDIA drivers utilities (32-bit) | |
| local/libvdpau 1.1-1 | |
| Nvidia VDPAU library | |
| local/nvidia-340xx 340.76-7 | |
| NVIDIA drivers for linux, 340xx legacy branch | |
| local/nvidia-340xx-libgl 340.76-2 | |
| NVIDIA drivers libraries symlinks |
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
| IEnumerable<int> fib() { | |
| var s1 = 0; | |
| var s2 = 1; | |
| while (true) { | |
| var o = s1 + s2; | |
| s1 = s2; | |
| s2 = o; | |
| yield return o; | |
| } | |
| } |
NewerOlder