第二版に限定した情報をまとめる。
これがないと始まらない。現在第二版は基本セットと拡張が 1 つ出ている。
- ハートオブクラウン 第二版 5940 円
- https://www.yodobashi.com/product/100000001006848167/
| use std::iter; | |
| fn main() { | |
| iter::repeat( | |
| iter::once("しか") | |
| .chain(iter::repeat("のこ").take(3)) | |
| .chain(iter::once("こし")) | |
| .chain(iter::repeat("たん").take(2)) | |
| .chain(iter::once("\n")), | |
| ) |
第二版に限定した情報をまとめる。
これがないと始まらない。現在第二版は基本セットと拡張が 1 つ出ている。
| # Edit this configuration file to define what should be installed on | |
| # your system. Help is available in the configuration.nix(5) man page, on | |
| # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). | |
| { | |
| config, | |
| lib, | |
| pkgs, | |
| ... | |
| }: |