Shiwei Weng 翁士伟
Shiwei Weng 翁士伟
It is not really an issue but I want to share if people are wondering whether this tool works on other platforms other than real linux. I test it under...
Maybe I miss it but I don't find sections on the syntax for locally abstract types. I would expect it on section overview or comparison-to-ocaml. refmt will translate this reason...
> Note that you cannot filter by test case name (i.e. Lower case or Capitalization), you must filter by test name & number instead. I saw this in the doc....
When using `./my_test test ''`, can I omit the output rows for skipped test cases?
Is it possible to not append the `.` at the end of the line? e.g. as the demo shows ``` $ ./simple.native test '.*concat*' Testing Utils. [SKIP] string-case 0 Lower...
It may be the case for non-expert users to search for a type to check whether some standard function exist, e.g. I searched `'a -> 'a -> 'a` in the...
I am working on my repl based on [examples/repl.ml](https://github.com/ocaml-community/lambda-term/blob/d68d2fd21554b16b6968b943566a21f62614f072/examples/repl.ml#L22). A common scenario is e.g. `Interpreter.eval` prints something to the stdout. ```ocaml module Interpreter = struct type state = { n...
I make an example for `LTerm_read_line.read_keyword` modified from `read_password.ml`.
This PR adds a new entry function `parse_all` to get subgraph information when parsing a dot file. In the old code, `clust_nodes` is defined, and used, but not returned. It's...
The dot parser [src/dot.ml](https://github.com/backtracking/ocamlgraph/blob/master/src/dot.ml#L103) contains small glitches, and I am happy to fix them if it sounds good to you. My starting point was to add support for `Equal of...