Subject | Hash | Author | Date (UTC) |
---|---|---|---|
doc: cookbook: Mention "#true" and "#false". | cd958802f20e07967d2245039ebadd5911c47333 | Ludovic Courtès | 2020-10-14 09:28:30 |
gnu: Add emacs-gcmh. | 028119e9f5a0b31fe27334eb5de582d42d3ffd5d | Niklas Eklund | 2020-09-30 13:34:36 |
image: Use 'raise' from (srfi srfi-34). | 281869e6f8d5b7ea6300c5b93acb324a6011585e | Ludovic Courtès | 2020-10-14 09:07:40 |
hurd-boot: Set /hurd/magic on /dev/fd. | 57a7aa1ae3ef67c6e8becca766adfb4b4c8f59ac | Ludovic Courtès | 2020-10-14 09:06:55 |
doc: Mention "i586-gnu" as supported and experimental. | d96e739f08f13cc1981f9367bbda1eba3c567f5f | Ludovic Courtès | 2020-10-14 08:57:06 |
doc: Avoid orphan node. | 4b0a1543e1f67828c09be4a75d1155227bf526ac | Ludovic Courtès | 2020-10-14 08:53:00 |
openpgp: '&openpgp-unrecognized-packet-error' includes type tag. | 37a8f5b281644bd5355406a4df76bbb9efc50d9c | Ludovic Courtès | 2020-10-14 08:19:38 |
gnu: guix: Change Git URL. | f73f3d01a28bf791815de24523ed6b1a2da1f179 | Ludovic Courtès | 2020-10-14 08:16:41 |
gnu: slurm: Update to 20.02.5. | 3c338135f1ec218f2cd19786a13b883ed36f12bb | Ricardo Wurmus | 2020-10-14 13:22:29 |
gnu: bluez-alsa: Add LDAC support. | 09b00a62b297edb92ac4dde6f4838261ac0cad16 | Ricardo Wurmus | 2020-10-14 12:54:22 |
gnu: bluez-alsa: Update to 3.0.0. | a079f3eb2fad1a88e6cdfdd35996bf36e01ed4b0 | Ricardo Wurmus | 2020-10-14 12:54:13 |
gnu: Add ldacbt. | c8d07c5f1f76951b0284f1435b563e8fe14d5674 | Ricardo Wurmus | 2020-10-14 12:53:54 |
services: nginx: Fix typo in exported symbol. | 5436b673f53d27753b53ab8d94eea6153a20e483 | Lulu | 2020-10-14 06:37:30 |
gnu: rxvt-unicode: Enable 256 colors | 4835d52efd6aedb14978089785a09baf2be31386 | Josh Hoff | 2020-10-10 09:55:26 |
gnu: monero-gui: Update to 0.17.1.0. | 3df707778a29b7364fffe94c150a9f69467c47cf | Guillaume Le Vaillant | 2020-10-14 09:07:23 |
gnu: monero: Update to 0.17.1.0. | 47fb72d2e500bffd167a95d6fa116755711a9bd3 | Guillaume Le Vaillant | 2020-10-14 08:27:05 |
gnu: offlineimap: Update to 7.3.3. | d763e3c7461028c2e6575f1edeba4743f16e0878 | Tim Gesthuizen | 2020-10-13 12:17:53 |
gnu: Add python-rfc6555. | 7a5d13786b0d54a8d85932557b55dec1653f1402 | Tim Gesthuizen | 2020-10-13 12:16:58 |
gnu: kmonad: Update to 0.4.1. | 71e35cb34db4006588dee4d93dc75dfa3d406276 | Alex Griffin | 2020-10-14 06:52:36 |
news: Add ‘de’ translation. | dad56a2b5b01bec5ae7acd9859727671fc060070 | Florian Pelz | 2020-10-14 06:25:34 |
File | Lines added | Lines deleted |
---|---|---|
doc/guix-cookbook.texi | 5 | 4 |
File doc/guix-cookbook.texi changed (mode: 100644) (index a783c0ae4c..affb68ca12) | |||
... | ... | REPL. | |
128 | 128 | @item | @item |
129 | 129 | Scheme syntax boils down to a tree of expressions (or @emph{s-expression} in | Scheme syntax boils down to a tree of expressions (or @emph{s-expression} in |
130 | 130 | Lisp lingo). An expression can be a literal such as numbers and strings, or a | Lisp lingo). An expression can be a literal such as numbers and strings, or a |
131 | compound which is a parenthesized list of compounds and literals. @code{#t} | ||
132 | and @code{#f} stand for the Booleans ``true'' and ``false'', respectively. | ||
131 | compound which is a parenthesized list of compounds and literals. @code{#true} | ||
132 | and @code{#false} (abbreviated @code{#t} and @code{#f}) stand for the | ||
133 | Booleans ``true'' and ``false'', respectively. | ||
133 | 134 | ||
134 | 135 | Examples of valid expressions: | Examples of valid expressions: |
135 | 136 | ||
... | ... | this: | |
1090 | 1091 | #t) | #t) |
1091 | 1092 | @end lisp | @end lisp |
1092 | 1093 | ||
1093 | The procedure must return @code{#t} on success. It's brittle to rely on the return | ||
1094 | The procedure must return @code{#true} on success. It's brittle to rely on the return | ||
1094 | 1095 | value of the last expression used to tweak the phase because there is no | value of the last expression used to tweak the phase because there is no |
1095 | guarantee it would be a @code{#t}. Hence the trailing @code{#t} to ensure the right value | ||
1096 | guarantee it would be a @code{#true}. Hence the trailing @code{#true} to ensure the right value | ||
1096 | 1097 | is returned on success. | is returned on success. |
1097 | 1098 | ||
1098 | 1099 | @subsubsection Code staging | @subsubsection Code staging |