Arc Forumnew | comments | leaders | submitlogin
3 points by sjs 6057 days ago | link | parent

If you get the git "wiki"[1] (open commit access) there are docstrings for many fns & macros, and the docs can be accessed from the repl using (help <name>), fns matching a prefix can be listed, e.g. (fns "m").

As a bonus, if you fire up (asv) and browse to http://localhost:8080/help there's some online help that links the bracketed "see also" [[names]] in the docstrings to their documentation.

[1] http://arclanguage.org/item?id=809



2 points by almkglor 6057 days ago | link

Another note: you can search through the docstrings by using (help "<string>"). Note that (help ...) differentiates by the quotes on the string. So

  (help string)
returns the docstring for the function 'string, while

  (help "string")
prints a list of functions whose docstrings contain "string".

-----