summary refs log tree commit diff stats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Added uints to Leaf nodesapense2015-06-161-0/+4
| | | [This question on SO](http://stackoverflow.com/questions/30311110/how-to-create-a-nnkuint16lit-nimnode) made me realized these weren't in there
* Merge pull request #2936 from alexamy/alexamy-patch-1Andreas Rumpf2015-06-161-3/+12
|\ | | | | Tutorial Part I update
| * Update tut1.txtAlexander2015-06-161-7/+12
| |
| * Update tut1.txtAlexander2015-06-161-1/+1
| |
| * Update tut1.txtAlexander2015-06-161-0/+4
| |
* | Merge pull request #2851 from stefantalpalaru/gogcAndreas Rumpf2015-06-162-2/+2
|\ \ | |/ |/| the Go GC (using the gccgo implementation)
| * Merge branch 'devel' into gogcStefan Talpalaru2015-06-155-23/+47
| |\
| * | the Go GC - initial implementationStefan Talpalaru2015-05-312-2/+2
| | |
* | | Fleshed out type sectionapense2015-06-151-2/+103
| | | | | | | | | Hopefully this table renders correctly. Not sure this is the best place for this stuff.
* | | Added import-type statementsapense2015-06-151-0/+96
| | | | | | | | | import, import .. except, export, include, etc.
* | | Minor updates; addition of `var` return in procsapense2015-06-151-0/+48
| | |
* | | Added static typesapense2015-06-151-0/+20
| | | | | | | | | I put this within the type section, but I'm not sure if it should go here. It has a broader use. Should it get its own section?
* | | Added raw string literal function calls docsapense2015-06-151-0/+19
| | | | | | | | | Got curious as to how re"..." worked.
* | | Corrected capitalizationapense2015-06-151-1/+1
| | | | | | | | | Sorry to be making so many changes.
* | | Updated type section a littleapense2015-06-151-0/+44
| | | | | | | | | | | | | | | Objects are ubiquitous. Concepts don't use ``concept`` in their name. Really, a lot more could be added here.
* | | Clarified ASTapense2015-06-151-4/+4
| | | | | | | | | Generic parameters are treated in the next paragraph. Revised text for future compatibility
* | | Added some documentationapense2015-06-151-16/+391
| |/ |/| | | | | This is a start. Other updates for `macros.nim` are planned, but this at least fleshes out some of the sections. Comments are appreciated!
* | Regarding num literals, mod paths, ident equality.Oscar Campbell2015-06-142-9/+26
| |
* | Note about deprecation in generics.txtapense2015-06-081-2/+4
| | | | | | I'm happy to change the wording or anything. It does seem like an important thing to mention, though. It might be better not to even mention typeless procs so as not to encourage bad behavior.
* | Fixed links in Error hierarchyapense2015-06-041-2/+2
| | | | | | Manual contained invalid links
* | Fixed code indentation in procs.txtapense2015-06-041-1/+1
| | | | | | Now matches tut2.txt
* | Fix doc for #2523, regarding numeric literals.Oscar Campbell2015-05-311-9/+14
|/
* prepare for unidecode Nimble packageAraq2015-05-281-5/+0
|
* Fix introduced erroneous use of "canonical" back to original wording. Fix ↵Oscar Campbell2015-05-262-4/+5
| | | | faulty description of proc params behavior. Remove 'null' return type in example.
* Remove double punctuation. Change "contrained" wording to "constraint".Oscar Campbell2015-05-252-3/+4
|
* Merge remote-tracking branch 'upstream/devel' into develOscar Campbell2015-05-252-4/+4
|\
| * Corrected various links within documentationapense2015-05-252-4/+4
| | | | | | | | | | | | | | | | | | Corrected `noSideEffect pragma` links in lib/system (The newer documentation uses slightly different links) Corrected `noSideEffect pragma` in types links to match the updated link names Minor link adjustment in stmts to match the newer link names
| * Revert "Fix typo in manual"reactormonk2015-05-241-4/+4
| |
| * Merge pull request #2787 from flaviut/fix-doc-typosreactormonk2015-05-241-4/+4
| |\ | | | | | | Fix typo in manual
| | * Fix typo in manualFlaviu Tamas2015-05-241-4/+4
| | | | | | | | | | | | See IRC logs around Sun May 24 22:06:26 EDT 2015 for details
* | | Change to hard word wrap at 80.Oscar Campbell2015-05-254-17/+33
| | |
* | | Change wording in some parts. Fix some typos.Oscar Campbell2015-05-2511-60/+71
|/ /
* / Fix typo in tutorialSergey Avseyev2015-05-231-1/+1
|/
* Update ast spec about uint literalsdef2015-05-181-1/+1
|
* Merge pull request #2717 from reactormonk/sexp-to-libsDominik Picheta2015-05-161-0/+4
|\ | | | | added documentation about sexp
| * added documentation about sexpSimon Hafner2015-05-141-0/+4
| |
* | RawFlowVar was renamed to FlowVarBaseMarkus Engelbrecht2015-05-162-2/+2
| |
* | Merge pull request #2729 from mgee/fix-noSideEffect-typoreactormonk2015-05-151-1/+1
|\ \ | | | | | | fix typo for noSideEffect pragma
| * | fix typo for noSideEffect pragmaMarkus Engelbrecht2015-05-151-1/+1
| |/
* / use new syntax for negative slicingMarkus Engelbrecht2015-05-151-1/+1
|/
* fixes typo in tut1Araq2015-05-041-36/+36
|
* version 0.11.0Araq2015-04-301-0/+5
|
* more cleanups for 0.11.0Araq2015-04-302-35/+186
|
* cleanups for underscores in tuple unpackingAraq2015-04-241-30/+44
|
* fixes #2533Araq2015-04-241-1/+1
|
* fixes #2335Araq2015-04-241-1/+20
|
* Merge branch 'devel' of https://github.com/Araq/Nim into develAraq2015-04-203-10/+30
|\
| * Merge pull request #2503 from ReneSac/arrowLikeAndreas Rumpf2015-04-151-8/+9
| |\ | | | | | | Restrict arrow-like operators to those ending with `->`, `~>` or `=>`
| | * Minor fixes for arrow like change patchReneSac2015-04-111-3/+4
| | | | | | | | | | | | | | | | | | Don't use ^ operator yet for compatibility with older compilers. Moved arrow like explanation, and fix precedence description on the text in the manual. Fixed typo in news.
| | * Changing the rule for arrow like operators again.ReneSac2015-04-101-2/+2
| | |