-
There seems to be a formatting issue here in the interpreter code listing, both in the pdf and html.
-
A bunch of typos in the example above. It should be:
let rec destutter = function
| [] | [_] as l -> l
| hd :: (hd' :: _ as tl)->
if hd' = hd then destutter tl
else hd :: destutter…
-
There is a typo in the example above. The defined function name is "ls_rec" but you invoke it as "all_files".
-
would be really nice to also show explicitly what you'd have to write without using this idiom, else reader might be put off thinking this is rather complex compared to the alternative (at least until…
mor1 updated
11 years ago
-
Apparently make build went fine, but, then, make install gave:
sudo make install
rm -rf /usr/local/lib/felix/felix-1.1.9dev
build/release/host/bin/flx_cp build/release/host '(._)' '/usr/local/lib/fel…
-
[Google Issue #1805 : https://code.google.com/p/haxe/issues/detail?id=1805]
by si...@haxe.org, at 10/05/2013, 11:55:13
Should be introduce an equivalent of EMeta for the typed AST? It could carry som…
-
The following code example is missing its prompt (`#`).
-
"these common patterns been codified" lacks "have" ("have been codified")
-
Typos?: '... throughout this chapter ...' should read '...throughout this part ...' ?
Also the later word 'on' should be deleted (or 'theme' changed to 'focus')?
-
"Label punning works in both function declaration and function invocation, as shown in these examples" The examples actually don't show how to use label punning in function declarations.